forked from dom111/civ-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.98 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
56
57
{
"productName": "civ-clone",
"name": "civ-clone",
"version": "0.1.0",
"homepage": "https://github.com/dom111/civ-one",
"description": "civ-clone base library and plugin infrastructure.",
"type": "module",
"scripts": {
"eslint": "eslint src plugins",
"eslint:fix": "npm run eslint -- --fix",
"jsonlint:plugins": "find ./ -name plugin.json -not -path \"./node_modules/*\" -not -path \"./plugins/disabled/*\" | xargs -n1 ajv -s src/Plugin/Schema.json -d",
"lint": "npm run jsonlint:plugins && npm run eslint",
"start": "node --experimental-vm-modules ./boot.js",
"start:renderer": "qode --experimental-vm-modules ./boot.js",
"profile": "node --prof --experimental-vm-modules ./boot.js -- --reportTurns=250 --reportAndQuit=1",
"start:fit": "node --experimental-vm-modules ./boot.js -- --height=$(($(tput lines) - 2)) --width=$(tput cols) --players=7",
"start:debug": "node --inspect --experimental-vm-modules ./boot.js",
"test": "mocha ./**/tests/*.test.js",
"test:coverage": "c8 mocha ./**/tests/*.test.js",
"validate": "./checkPlugins.sh"
},
"author": "dom111 <dom111@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/dom111/civ-one.git"
},
"bugs": {
"url": "https://github.com/dom111/civ-one/issues"
},
"keywords": [
"civ",
"civilization",
"civone",
"civ-one"
],
"husky": {
"hooks": {
"pre-commit": "npm run eslint:fix && npm run test"
}
},
"engines": {
"node": ">=13.0.0"
},
"dependencies": {
"@nodegui/nodegui": "^0.18.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"ajv-cli": "^3.0.0",
"babel-eslint": "^10.0.3",
"c8": "^7.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^3.1.0",
"mocha": "^7.0.1"
}
}