mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
96 lines
2.5 KiB
JSON
96 lines
2.5 KiB
JSON
{
|
|
"name": "verdaccio",
|
|
"version": "2.1.7",
|
|
"description": "Private npm repository server",
|
|
"author": {
|
|
"name": "Alex Kocharin",
|
|
"email": "alex@kocharin.ru"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/verdaccio/verdaccio"
|
|
},
|
|
"main": "index.js",
|
|
"bin": {
|
|
"verdaccio": "./bin/verdaccio"
|
|
},
|
|
"dependencies": {
|
|
"JSONStream": "^1.1.1",
|
|
"apache-md5": "^1.1.2",
|
|
"async": "^2.0.1",
|
|
"body-parser": "^1.15.0",
|
|
"bunyan": "^1.8.0",
|
|
"chalk": "^1.1.3",
|
|
"commander": "^2.9.0",
|
|
"compression": "^1.6.1",
|
|
"cookies": "^0.6.1",
|
|
"express": "^4.13.4",
|
|
"handlebars": "^4.0.5",
|
|
"highlight.js": "^9.3.0",
|
|
"http-errors": "^1.4.0",
|
|
"jju": "^1.3.0",
|
|
"js-yaml": "^3.6.0",
|
|
"lockfile": "^1.0.1",
|
|
"lunr": "^0.7.0",
|
|
"minimatch": "^3.0.2",
|
|
"mkdirp": "^0.5.1",
|
|
"pkginfo": "^0.4.0",
|
|
"readable-stream": "^2.1.2",
|
|
"render-readme": "^1.3.1",
|
|
"request": "^2.72.0",
|
|
"semver": "^5.1.0",
|
|
"unix-crypt-td-js": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^13.0.0",
|
|
"browserify-handlebars": "^1.0.0",
|
|
"codacy-coverage": "^2.0.2",
|
|
"codecov": "^2.2.0",
|
|
"coveralls": "^2.13.0",
|
|
"eslint": "^3.19.0",
|
|
"eslint-config-google": "^0.7.1",
|
|
"grunt": "^1.0.1",
|
|
"grunt-browserify": "^5.0.0",
|
|
"grunt-cli": "^1.2.0",
|
|
"grunt-contrib-less": "^1.3.0",
|
|
"grunt-contrib-watch": "^1.0.0",
|
|
"mocha": "^3.2.0",
|
|
"mocha-lcov-reporter": "^1.3.0",
|
|
"nyc": "^10.1.2",
|
|
"onclick": "^0.1.0",
|
|
"rimraf": "^2.5.2",
|
|
"transition-complete": "^0.0.2",
|
|
"unopinionate": "^0.0.4"
|
|
},
|
|
"keywords": [
|
|
"private",
|
|
"package",
|
|
"repository",
|
|
"registry",
|
|
"modules",
|
|
"proxy",
|
|
"server"
|
|
],
|
|
"scripts": {
|
|
"test": "npm run lint && mocha ./test/functional ./test/unit",
|
|
"test:coverage": "nyc mocha -R spec ./test/functional ./test/unit",
|
|
"coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
|
|
"coverage:codecov": "nyc report --reporter=lcov | codecov",
|
|
"coverage:codacy": "nyc report --reporter=lcov && cat coverage/lcov.info | codacy-coverage",
|
|
"test-travis": "npm run lint && npm run test:coverage",
|
|
"test-only": "mocha ./test/functional ./test/unit",
|
|
"lint": "eslint .",
|
|
"build-docker": "docker build -t verdaccio .",
|
|
"build-docker:rpi": "docker build -f Dockerfile.rpi -t verdaccio:rpi ."
|
|
},
|
|
"engines": {
|
|
"node": ">=4.6.1",
|
|
"npm": ">=2.15.9"
|
|
},
|
|
"preferGlobal": true,
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"license": "WTFPL"
|
|
}
|