-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "postinstaller-badge",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "micro-dev",
"start": "micro",
"release": "standard-version -s",
"test": "nyc ava",
"pretest": "xo"
},
"keywords": [],
"author": "Andreas Pizsa <hopster@gmail.com> (https://github.com/AndreasPizsa)",
"license": "MIT",
"devDependencies": {
"@andreaspizsa/eslint-config-xo": "^0.1.2",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"ava": "^1.0.0-rc.2",
"husky": "^1.2.0",
"nyc": "^13.1.0",
"standard-version": "^4.4.0",
"test-listen": "^1.1.0",
"xo": "^0.23.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"badgen": "^2.5.0",
"got": "^9.3.2",
"micro": "^9.3.3",
"package-json": "^5.0.0"
},
"standard-version": {
"scripts": {
"prerelease": "npm test"
}
},
"xo": {
"space": 2,
"extends": [
"@andreaspizsa/eslint-config-xo"
]
}
}