-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
32 lines (32 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "dependent-packages",
"version": "2.2.2",
"description": "Offline collection of the dependents and devDependents of every package in the npm registry.",
"repository": "https://github.com/zeke/dependent-packages",
"main": "index.js",
"scripts": {
"install": "npm run decompress",
"build": "node bin/build.js",
"compress": "tar cfzv dependents.tgz dependents && tar cfzv devDependents.tgz devDependents",
"decompress": "tar xfz dependents.tgz && tar xfz devDependents.tgz",
"count": "node bin/count.js > counts.json",
"test": "node test.js | tap-spec && standard *.js bin/*.js"
},
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)",
"license": "MIT",
"devDependencies": {
"lodash.uniq": "^4.5.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^3.1.1",
"package-stream": "^1.0.2",
"require-dir": "^0.3.1",
"rimraf": "^2.5.4",
"standard": "^8.5.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.2"
},
"dependencies": {
"decompress": "^4.0.0",
"package-stream": "^1.0.2"
}
}