forked from ngryman/badge-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "badge-size",
"version": "1.0.0",
"description": "Displays the size of a given file in your repository",
"author": "Nicolas Gryman <ngryman@gmail.com> (https://ngryman.sh/)",
"license": "MIT",
"repository": "ngryman/badge-size",
"main": "index.js",
"engines": {
"node": "^8.10.0 || >=9.10.0"
},
"files": [
"index.js",
"lib"
],
"scripts": {
"lint": "eslint *.js",
"unit": "nyc ava",
"start": "vercel dev",
"test": "npm run lint -s && npm run unit -s",
"dev": "npm run unit -- --watch",
"coverage": "nyc report --reporter=text-lcov | codecov",
"check-coverage": "nyc check-coverage --lines 95 --functions 95 --branches 95",
"see-coverage": "nyc report --reporter=html && open coverage/index.html",
"contributors": "contributor-faces --exclude '*bot'"
},
"precommit": [
"test",
"check-coverage",
"contributors"
],
"keywords": [
"badge",
"ci",
"github",
"gzip",
"jpg",
"png",
"readme",
"repository",
"size",
"svg",
"weight"
],
"dependencies": {
"brotli-size": "^0.0.3",
"cz-emoji": "^1.2.2",
"got": "^9.0.0",
"gzip-size": "^5.0.0",
"micro": "^9.3.2",
"pretty-bytes": "^5.1.0"
},
"devDependencies": {
"ava": "^0.25.0",
"codecov.io": "^0.1.6",
"contributor-faces": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-ngryman": "^1.7.0",
"nyc": "^12.0.2",
"pre-commit": "^1.1.3",
"test-listen": "^1.0.0"
}
}