-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
52 lines (52 loc) · 1.6 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
{
"name": "@project-nisei/netrunner-cards-json",
"version": "1.0.2",
"description": "Card data for the Android: Netrunner card game.",
"repository": "https://github.com/NetrunnerDB/netrunner-cards-json",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --no-color --write '{{**,.}/*.json,.*.json,*.json}'",
"format-check": "prettier --no-color --check '{{**,.}/*.json,.*.json,*.json}'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"test": "mocha -R list -r ts-node/register test/*.ts test/**/*.ts",
"update-locales": "tsc && node dist/update-locales.js",
"watch": "mocha -r ts-node/register --extensions ts --watch --watch-files src,test test/**/*.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.10.0",
"command-line-args": "^5.2.1",
"lodash": "^4.17.21",
"prettier": "^3",
"sync-fetch": "^0.4.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^4.2.15",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.3",
"@types/node": "^14.14.33",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.3",
"husky": "^8",
"lint-staged": "^13.2.1",
"mocha": "^9.2.1",
"prettier": "^3",
"prettier-plugin-sort-json": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.6.4"
},
"lint-staged": {
"{{**,.}/*.json,.*.json,*.json}": "prettier --write"
},
"prettier": {
"jsonRecursiveSort": true,
"plugins": [
"prettier-plugin-sort-json"
]
}
}