-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "xwing-data2",
"version": "3.9.1",
"repository": "git@github.com:guidokessels/xwing-data2.git",
"author": "Guido Kessels <mail@guidokessels.com>",
"license": "MIT",
"scripts": {
"validate:json": "jsonlint-cli data/**/*.json",
"validate:tests": "jest tests/**.test.js",
"validate:tests:watch": "jest --watch tests/**.test.js",
"format": "prettier --loglevel warn --write \"data/**/*.json\"",
"changelog": "git log --pretty=format:'- %s (%h)' --no-merges"
},
"devDependencies": {
"@types/node": "^17.0.21",
"exceljs": "^4.3",
"git-diff": "^2.0.6",
"husky": "^4.2.1",
"jest": "^29.3.1",
"jest-json-schema": "^2.1.0",
"json-stable-stringify": "^1.0.1",
"jsonfile": "^5.0.0",
"jsonlint-cli": "^1.0.1",
"lint-staged": "^10.0.7",
"node-fetch": "^3.1.1",
"prettier": "^1.19.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"{data,tests}/**/*.{js,json}": [
"yarn validate:tests --bail"
],
"*.json": "prettier --write"
},
"prettier": {
"tabWidth": 2,
"printWidth": 80
},
"dependencies": {
"string-math": "^1.2.2"
}
}