-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 KB
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
{
"name": "increment-eslint",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"incrementLint": "./bin/incrementLint"
},
"scripts": {
"test": "jest",
"dev": "tsc --watch",
"build": "tsc"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Yunmo",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@types/eslint": "^4.16.6",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.144",
"@types/node": "^12.0.2",
"@types/typescript": "^2.0.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chalk": "^2.4.2",
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^2.3.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^4.0.3",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"anymatch": "^3.0.2",
"fs-extra": "^8.1.0",
"typings": "^2.1.1"
}
}