forked from lbrande/games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 913 Bytes
/
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
{
"name": "@18xx-maker/games",
"version": "4.1.0",
"description": "Game and tile files for 18xx-maker",
"main": "index.js",
"repository": "https://github.com/18xx-maker/games",
"author": "Christopher Giroir <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "node ./generateIndex.js",
"test": "run-p validate",
"validate": "run-s validate:tiles validate:games",
"validate:tiles": "18xx-schemas tiles/*.json",
"validate:games": "18xx-schemas games/*.json games/**/*.json"
},
"dependencies": {
"ramda": "^0.27.0"
},
"devDependencies": {
"@18xx-maker/schemas": "^5.0.0",
"handlebars": "^4.7.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": "prettier --write"
}
}