-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 1.81 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "npm-size",
"version": "0.1.1",
"description": "Get the install size of an npm package.",
"bin": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run lint",
"lint": "xo",
"build": "ncc build lib/cli.js",
"prepublishOnly": "npm run build"
},
"repository": {
"url": "egoist/npm-size",
"type": "git"
},
"author": "egoist<0x142857@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/execa": "^0.9.0",
"@zeit/ncc": "^0.13.0",
"bili": "^4.1.0",
"bytes": "^3.1.0",
"cac": "^6.4.2",
"chalk": "^2.4.2",
"commitizen": "^3.0.5",
"conf": "^2.2.0",
"cz-conventional-changelog": "^2.1.0",
"env-paths": "^2.0.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"execa": "^1.0.0",
"get-folder-size": "^2.0.1",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"listr": "^0.14.3",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.0",
"parse-package-name": "^0.1.0",
"prettier": "^1.15.2",
"pretty-bytes": "^5.1.0",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"semver": "^5.6.0",
"string-width": "^3.0.0",
"xo": "^0.23.0",
"yarn": "^1.13.0"
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
],
"rules": {
"unicorn/filename-case": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"zen-observable": "^0.8.13"
}
}