node/deps/npm/package.json

134 lines
2.7 KiB
JSON
Raw Normal View History

2012-01-17 07:06:16 +08:00
{
2013-03-21 08:49:57 +08:00
"version": "1.2.15",
2012-01-17 07:06:16 +08:00
"name": "npm",
"publishConfig": {
"proprietary-attribs": false
},
"description": "A package manager for node",
"keywords": [
"package manager",
"modules",
"install",
"package.json"
],
"preferGlobal": true,
"config": {
"publishtest": false
},
2012-10-12 05:11:38 +08:00
"homepage": "https://npmjs.org/doc/",
2012-01-17 07:06:16 +08:00
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
"repository": {
"type": "git",
"url": "https://github.com/isaacs/npm"
},
"bugs": {
"email": "npm-@googlegroups.com",
"url": "http://github.com/isaacs/npm/issues"
},
"directories": {
"doc": "./doc",
"man": "./man",
"lib": "./lib",
"bin": "./bin"
},
"main": "./lib/npm.js",
"bin": "./bin/npm-cli.js",
"dependencies": {
2013-01-10 07:21:30 +08:00
"semver": "~1.1.2",
2013-02-07 00:39:27 +08:00
"ini": "~1.1.0",
2012-01-17 07:06:16 +08:00
"slide": "1",
2013-01-19 04:12:07 +08:00
"abbrev": "~1.0.4",
2013-02-07 00:39:27 +08:00
"graceful-fs": "~1.2.0",
2013-03-07 07:41:06 +08:00
"minimatch": "~0.2.11",
2013-01-19 04:12:07 +08:00
"nopt": "~2.1.1",
"rimraf": "2",
2012-01-17 07:06:16 +08:00
"request": "~2.9",
"which": "1",
2013-03-29 02:35:12 +08:00
"tar": "~0.1.17",
2013-02-07 00:39:27 +08:00
"fstream": "~0.1.22",
2012-01-17 07:06:16 +08:00
"block-stream": "*",
"inherits": "1",
2012-06-11 12:29:47 +08:00
"mkdirp": "~0.3.3",
2012-08-22 06:29:03 +08:00
"read": "~1.0.4",
2013-03-29 02:35:12 +08:00
"lru-cache": "~2.3.0",
"node-gyp": "~0.9.3",
2012-10-24 02:34:46 +08:00
"fstream-npm": "~0.1.3",
"uid-number": "0",
"archy": "0",
2012-06-11 12:29:47 +08:00
"chownr": "0",
"npmlog": "0",
"ansi": "~0.1.2",
2013-03-07 07:41:06 +08:00
"npm-registry-client": "~0.2.18",
2013-03-21 08:49:57 +08:00
"read-package-json": "~0.3.0",
2012-12-22 00:42:29 +08:00
"read-installed": "0",
2013-03-07 07:41:06 +08:00
"glob": "~3.1.21",
2012-10-12 05:11:38 +08:00
"init-package-json": "0.0.6",
"osenv": "0",
2013-02-07 00:39:27 +08:00
"lockfile": "~0.3.0",
2012-07-14 02:40:38 +08:00
"retry": "~0.6.0",
"once": "~1.1.1",
2012-09-25 23:28:55 +08:00
"npmconf": "0",
2013-03-07 07:41:06 +08:00
"opener": "~1.3.0",
"chmodr": "~0.1.0"
2012-01-17 07:06:16 +08:00
},
"bundleDependencies": [
"semver",
"ini",
"slide",
2012-01-17 07:06:16 +08:00
"abbrev",
"graceful-fs",
"minimatch",
"nopt",
"rimraf",
"request",
"which",
"tar",
"fstream",
"block-stream",
"inherits",
"mkdirp",
"read",
"lru-cache",
"node-gyp",
"fstream-npm",
"uid-number",
"archy",
2012-06-11 12:29:47 +08:00
"chownr",
"npmlog",
"ansi",
2012-06-16 01:00:30 +08:00
"npm-registry-client",
"read-package-json",
"read-installed",
"glob",
2012-06-19 09:08:21 +08:00
"init-package-json",
"osenv",
"lockfile",
2012-07-14 02:40:38 +08:00
"retry",
"once",
2012-09-25 23:28:55 +08:00
"npmconf",
2013-03-07 07:41:06 +08:00
"opener",
"chmodr"
2012-01-17 07:06:16 +08:00
],
"devDependencies": {
2012-08-07 04:07:31 +08:00
"ronn": "~0.3.6",
2013-02-07 00:39:27 +08:00
"tap": "~0.4.0"
2012-01-17 07:06:16 +08:00
},
"engines": {
2012-08-22 06:29:03 +08:00
"node": ">=0.6",
2012-01-17 07:06:16 +08:00
"npm": "1"
},
"scripts": {
2012-06-20 00:53:03 +08:00
"test": "node ./test/run.js && tap test/tap/*.js",
2013-02-07 00:39:27 +08:00
"tap": "tap test/tap/*.js",
2012-12-13 06:41:28 +08:00
"prepublish": "node bin/npm-cli.js prune ; rm -rf test/*/*/node_modules ; make -j4 doc",
"dumpconf": "env | grep npm | sort | uniq",
"echo": "node bin/npm-cli.js"
2012-01-17 07:06:16 +08:00
},
"licenses": [
{
"type": "MIT +no-false-attribs",
2012-10-12 05:11:38 +08:00
"url": "https://github.com/isaacs/npm/raw/master/LICENSE"
}
]
}