0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/npm/package.json

145 lines
3.0 KiB
JSON
Raw Normal View History

2012-01-17 00:06:16 +01:00
{
2013-07-12 22:14:50 +02:00
"version": "1.3.4",
2012-01-17 00:06:16 +01: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-11 23:11:38 +02:00
"homepage": "https://npmjs.org/doc/",
2012-01-17 00:06:16 +01: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-07-09 22:09:02 +02:00
"semver": "~2.0.8",
2013-02-06 17:39:27 +01:00
"ini": "~1.1.0",
2013-05-14 23:37:59 +02:00
"slide": "~1.1.4",
2013-01-18 21:12:07 +01:00
"abbrev": "~1.0.4",
2013-07-12 17:55:57 +02:00
"graceful-fs": "~2.0.0",
2013-05-14 23:37:59 +02:00
"minimatch": "~0.2.12",
2013-01-18 21:12:07 +01:00
"nopt": "~2.1.1",
2013-07-09 22:09:02 +02:00
"rimraf": "~2.2.0",
2013-05-14 23:37:59 +02:00
"request": "~2.21.0",
2012-01-17 00:06:16 +01:00
"which": "1",
2013-03-28 19:35:12 +01:00
"tar": "~0.1.17",
2013-07-12 17:55:57 +02:00
"fstream": "~0.1.23",
2012-01-17 00:06:16 +01:00
"block-stream": "*",
"inherits": "1",
2012-06-11 06:29:47 +02:00
"mkdirp": "~0.3.3",
2012-08-22 00:29:03 +02:00
"read": "~1.0.4",
2013-03-28 19:35:12 +01:00
"lru-cache": "~2.3.0",
2013-07-12 17:55:57 +02:00
"node-gyp": "~0.10.6",
2012-10-23 20:34:46 +02:00
"fstream-npm": "~0.1.3",
"uid-number": "0",
"archy": "0",
2012-06-11 06:29:47 +02:00
"chownr": "0",
2013-07-12 17:55:57 +02:00
"npmlog": "0.0.4",
2012-06-11 06:29:47 +02:00
"ansi": "~0.1.2",
2013-07-12 17:55:57 +02:00
"npm-registry-client": "~0.2.27",
2013-07-09 22:09:02 +02:00
"read-package-json": "~1.1.0",
"read-installed": "~0.2.2",
2013-07-12 17:55:57 +02:00
"glob": "~3.2.3",
2013-07-09 22:09:02 +02:00
"init-package-json": "0.0.10",
"osenv": "0",
2013-07-12 17:55:57 +02:00
"lockfile": "~0.4.0",
2012-07-13 20:40:38 +02:00
"retry": "~0.6.0",
"once": "~1.1.1",
2013-07-09 22:09:02 +02:00
"npmconf": "~0.1.1",
2013-03-07 00:41:06 +01:00
"opener": "~1.3.0",
2013-04-03 19:17:04 +02:00
"chmodr": "~0.1.0",
2013-05-14 23:37:59 +02:00
"cmd-shim": "~1.1.0",
"sha": "~1.0.1",
"editor": "0.0.4",
"child-process-close": "~0.1.1",
2013-07-09 22:09:02 +02:00
"npm-user-validate": "0.0.3"
2012-01-17 00:06:16 +01:00
},
"bundleDependencies": [
"semver",
"ini",
"slide",
2012-01-17 00:06:16 +01: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 06:29:47 +02:00
"chownr",
"npmlog",
"ansi",
2012-06-15 19:00:30 +02:00
"npm-registry-client",
"read-package-json",
"read-installed",
"glob",
2012-06-19 03:08:21 +02:00
"init-package-json",
"osenv",
"lockfile",
2012-07-13 20:40:38 +02:00
"retry",
"once",
2012-09-25 17:28:55 +02:00
"npmconf",
2013-03-07 00:41:06 +01:00
"opener",
2013-04-03 19:17:04 +02:00
"chmodr",
2013-05-14 23:37:59 +02:00
"cmd-shim",
"sha",
"child-process-close",
"editor",
2013-06-18 18:42:42 +02:00
"npm-user-validate",
"normalize-package-data"
2012-01-17 00:06:16 +01:00
],
"devDependencies": {
2012-08-06 22:07:31 +02:00
"ronn": "~0.3.6",
2013-02-06 17:39:27 +01:00
"tap": "~0.4.0"
2012-01-17 00:06:16 +01:00
},
"engines": {
2012-08-22 00:29:03 +02:00
"node": ">=0.6",
2012-01-17 00:06:16 +01:00
"npm": "1"
},
"scripts": {
2012-06-19 18:53:03 +02:00
"test": "node ./test/run.js && tap test/tap/*.js",
2013-02-06 17:39:27 +01:00
"tap": "tap test/tap/*.js",
2012-12-12 23:41:28 +01: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 00:06:16 +01:00
},
"licenses": [
{
"type": "MIT +no-false-attribs",
2012-10-11 23:11:38 +02:00
"url": "https://github.com/isaacs/npm/raw/master/LICENSE"
}
]
}