-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.08 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
{
"name": "salary-committee",
"version": "1.0.0",
"description": "",
"main": "index.mjs",
"type": "module",
"scripts": {
"test": "xo && jest --coverage",
"start": "node index.js",
"lint": "xo",
"fix": "xo --fix",
"prepare": "husky install"
},
"author": {
"name": "Tobias Linkohr",
"email": "[email protected]",
"url": "https://farbenmeer.de/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farbenmeer/salary-committee.git"
},
"bugs": {
"url": "https://github.com/farbenmeer/salary-committee/issues"
},
"license": "ISC",
"lint-staged": {
"./**/*": [
"yarn run fix"
]
},
"xo": {
"rules": {
"import/extensions": "off"
},
"overrides": [
{
"files": [
"**/*.test.js"
],
"rules": {
"no-undef": "off"
}
}
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"husky": "^8.0.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"xo": "^0.51.0"
}
}