-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 932 Bytes
/
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
33
34
35
36
37
38
39
{
"name": "all-the-packages",
"version": "1.2.0",
"description": "All the npm registry metadata as an offline event stream.",
"main": "index.js",
"scripts": {
"postinstall": "npm run download",
"download": "curl https://skimdb.npmjs.com/registry/_design/scratch/_view/byField -o skimdb.json",
"test": "tape test/**/*.js | tap-spec"
},
"repository": "https://github.com/zeke/all-the-packages",
"keywords": [
"npm",
"registry",
"metadata",
"JSON",
"packages",
"names",
"list",
"words",
"filter",
"search",
"offline"
],
"author": "zeke",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeke/all-the-packages/issues"
},
"homepage": "https://github.com/zeke/all-the-packages#readme",
"dependencies": {
"JSONStream": "^1.0.6",
"event-stream": "^3.3.2"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
}
}