-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "babel-generate-guard-clauses",
"version": "3.0.0-1",
"description": "A helper to generate different guard clauses",
"main": "index.js",
"repository": "https://github.com/DanielMSchmidt/babel-generate-guard-clauses.git",
"author": "Daniel Schmidt <[email protected]>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"test": "jest",
"fmt": "prettier --write **/*.{js,json,css,md}"
},
"dependencies": {
"@babel/template": "^7.0.0-beta.49",
"@babel/types": "^7.0.0-beta.49"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"devDependencies": {
"coveralls": "3.1.1",
"eval": "0.1.8",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"nyc": "17.0.0",
"prettier": "3.3.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}