-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 1.67 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
64
65
66
67
{
"name": "bundle-phobia-cli",
"version": "0.14.14",
"description": "Cli for the node BundlePhobia Service",
"main": "src/index.js",
"bin": {
"bundle-phobia": "index.js",
"bundle-phobia-install": "index-install.js"
},
"engines": {
"node": ">=8.10"
},
"files": [
"src",
"*.js"
],
"scripts": {
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"test:unit": "nyc ava",
"test:e2e": "test/e2e/status-safetynet.sh && test/e2e/install-safetynet.sh",
"test:all": "npm run test:unit && npm run test:e2e",
"test:cover": "nyc npm run test:all",
"lint": "eslint src test *.js",
"publish-coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdrieanKhisbe/bundle-phobia-cli.git"
},
"keywords": [
"cli",
"bundle"
],
"author": "Adriean Khisbe <adriean.khisbe@live.fr> (https://github.com/AdrieanKhisbe/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdrieanKhisbe/bundle-phobia-cli/issues"
},
"homepage": "https://github.com/AdrieanKhisbe/bundle-phobia-cli#readme",
"dependencies": {
"bytes": "^3.1.0",
"chalk": "^4.1.1",
"inquirer": "^7.3.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"ora": "^4.1.1",
"p-map": "^4.0.0",
"read-pkg-up": "^7.0.1",
"resolve-package-json": "^1.4.0",
"update-notifier": "^4.1.3",
"yargs": "^15.4.1"
},
"devDependencies": {
"@-k/eslint-plugin": "^0.4.1",
"ava": "^2.4.0",
"codecov": "^3.8.2",
"eslint": "^7.32.0",
"nyc": "^15.1.0",
"strip-ansi": "^6.0.0",
"yargs-parser": "^18.1.3"
},
"ava": {
"files": [
"test/**/*.test.js"
]
}
}