verdaccio/package.json

61 lines
1.2 KiB
JSON
Raw Normal View History

2014-05-06 19:06:10 +02:00
{
2014-05-06 21:57:50 +02:00
"name": "bright-sinopia",
2014-05-06 19:06:10 +02:00
"version": "0.8.1",
"description": "Private npm repository server",
"author": {
"name": "Alex Kocharin",
"email": "alex@kocharin.ru"
},
"repository": {
"type": "git",
"url": "git://github.com/rlidwka/sinopia"
},
"main": "index.js",
"bin": {
"sinopia": "./bin/sinopia"
},
"dependencies": {
"express": "3.4.x",
"commander": ">= 2.1.0",
"js-yaml": ">= 3.0.1",
"cookies": ">= 0.3.8",
"request": ">= 2.31.0",
"async": ">= 0.2.9",
"semver": ">= 2.2.1",
"minimatch": ">= 0.2.14",
"bunyan": ">= 0.22.1",
"mkdirp": ">= 0.3.5"
},
"optionalDependencies": {
"fs-ext": ">= 0.3.2"
},
"devDependencies": {
"rimraf": ">= 2.2.5",
"mocha": ">= 1.17.0",
"eslint": ">= 0.4.2"
},
"keywords": [
"private",
"package",
"repository",
"registry",
"modules",
"proxy",
"server"
],
"scripts": {
"test": "mocha ./test/functional ./test/unit",
"lint": "eslint -c ./.eslint.yaml ./lib"
},
"engines": {
"node": ">=0.10"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": {
"type": "WTFPL",
"url": "http://www.wtfpl.net/txt/copying/"
}
}