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": {
|
2014-05-06 23:34:48 +02:00
|
|
|
"async": ">= 0.2.9",
|
|
|
|
"bunyan": ">= 0.22.1",
|
2014-05-06 19:06:10 +02:00
|
|
|
"commander": ">= 2.1.0",
|
|
|
|
"cookies": ">= 0.3.8",
|
2014-05-06 23:34:48 +02:00
|
|
|
"express": "3.4.x",
|
|
|
|
"handlebars": "^2.0.0-alpha.2",
|
|
|
|
"js-yaml": ">= 3.0.1",
|
2014-05-07 17:10:59 +02:00
|
|
|
"lunr": "^0.5.2",
|
2014-05-06 19:06:10 +02:00
|
|
|
"minimatch": ">= 0.2.14",
|
2014-05-06 23:34:48 +02:00
|
|
|
"mkdirp": ">= 0.3.5",
|
|
|
|
"request": ">= 2.31.0",
|
2014-05-07 00:40:21 +02:00
|
|
|
"semver": ">= 2.2.1",
|
|
|
|
"underscore": "^1.6.0"
|
2014-05-06 19:06:10 +02:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"fs-ext": ">= 0.3.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2014-05-07 00:04:03 +02:00
|
|
|
"eslint": ">= 0.4.2",
|
2014-05-06 19:06:10 +02:00
|
|
|
"mocha": ">= 1.17.0",
|
2014-05-07 00:04:03 +02:00
|
|
|
"rimraf": ">= 2.2.5"
|
2014-05-06 19:06:10 +02:00
|
|
|
},
|
|
|
|
"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/"
|
|
|
|
}
|
2014-05-06 23:34:48 +02:00
|
|
|
}
|