UNPKG

1.24 kBJSONView Raw
1{
2 "name": "depcost",
3 "version": "0.1.11",
4 "description": "Retrieve the time and space cost of using a dependency",
5 "main": "index.js",
6 "bin": {
7 "depcost": "bin/cli.js",
8 "dc": "bin/cli.js"
9 },
10 "files": [
11 "bin",
12 "lib"
13 ],
14 "keywords": [
15 "dependency"
16 ],
17 "scripts": {
18 "test": "jest",
19 "cov": "jest --coverage",
20 "lint": "xo --fix lib",
21 "prepublishOnly": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
22 "depcost": "node bin/cli.js --record --npm-client=npm",
23 "postpublish": "npm run depcost",
24 "release": "release-it"
25 },
26 "repository": {
27 "url": "git@github.com:rich-lab/depcost.git",
28 "type": "git"
29 },
30 "author": "ULIVZ <chl814@foxmail.com>",
31 "license": "MIT",
32 "dependencies": {
33 "cac": "6.4.0",
34 "chalk": "^3.0.0",
35 "execa": "^4.0.0",
36 "fs-extra": "^8.1.0",
37 "npmlog": "^4.1.2",
38 "ini": "^1.3.5",
39 "strip-ansi": "^6.0.0",
40 "globby": "^11.0.0"
41 },
42 "devDependencies": {
43 "conventional-changelog-cli": "^2.0.31",
44 "jest-cli": "^24.8.0",
45 "release-it": "^13.0.2",
46 "xo": "0.27.2"
47 },
48 "xo": {
49 "space": true,
50 "semicolon": false,
51 "prettier": true,
52 "rules": {
53 "no-await-in-loop": "off"
54 }
55 }
56}