-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.55 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
{
"name": "cz-clean",
"version": "0.1.0",
"repository": "[email protected]:hackerjobs/cz-clean.git",
"author": "Enrique Benitez <[email protected]>",
"license": "MIT",
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"commit": "git-cz",
"lint": "eslint lib/**",
"fix": "eslint --fix lib/**",
"test": "yarn build && ava",
"build": "rimraf dist && tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {
"pad": "^3.2.0",
"wrap-ansi": "^6.0.0"
},
"devDependencies": {
"@types/node": "^12.0.8",
"@types/wrap-ansi": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"ava": "^2.1.0",
"commitizen": "^3.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./dist/index.js"
}
}
}