-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "depcost",
"version": "0.4.2",
"description": "Retrieve the time and space cost of using a dependency",
"main": "index.js",
"bin": {
"depcost": "bin/cli.js",
"dc": "bin/cli.js"
},
"files": [
"bin",
"lib"
],
"keywords": [
"dependency"
],
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"lint": "eslint --fix lib",
"prepublishOnly": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"depcost": "node bin/cli.js --record --npm-client=npm",
"postpublish": "npm run depcost"
},
"repository": {
"url": "git@github.com:rich-lab/depcost.git",
"type": "git"
},
"author": "ULIVZ <chl814@foxmail.com>",
"license": "MIT",
"dependencies": {
"bytes": "^3.1.0",
"cac": "6.4.0",
"chalk": "^3.0.0",
"execa": "^4.0.3",
"fs-extra": "^8.1.0",
"globby": "^11.0.0",
"ini": "^1.3.5",
"npmlog": "^4.1.2",
"require-from-string": "^2.0.2",
"semver": "^7.3.2",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.31",
"eslint": "^6.8.0",
"eslint-config-lab": "^0.1.1",
"jest-cli": "^24.8.0"
}
}