-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
33
34
35
36
{
"name": "download-size",
"version": "1.4.1",
"description": "check download size of npmjs packages before downloading",
"main": "index.js",
"bin": "./index.js",
"scripts": {
"preversion": "npm test",
"postpublish": "git push && git push --tags",
"test": "npm run test:single && npm run test:multiple && npm run test:no-package && npm run test:no-file",
"test:single": "node index.js async",
"test:multiple": "node index.js async -f package.json @angular/core",
"test:no-package": "node index.js asdfnjjqjwjjds",
"test:no-file": "node index.js -f missing-file.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arve0/download-size.git"
},
"keywords": [
"npmjs",
"download",
"size",
"tar",
"package"
],
"author": "Arve Seljebu",
"license": "MIT",
"bugs": {
"url": "https://github.com/arve0/download-size/issues"
},
"homepage": "https://github.com/arve0/download-size#readme",
"dependencies": {
"si-prefix": "^0.2.0"
}
}