-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ninjawars",
"version": "1.20.2",
"description": "The Ninja Game at ninjawars.net",
"main": "deploy/www/js/nw.js",
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "eslint --ext .jsx,.js deploy/www/js",
"prepare-unit-test-ci": "echo 'no-op for now'",
"build": "yarn time && make build && yarn time",
"start": "yarn time && echo 'Not yet static serving' && npx serve deploy/www && yarn time",
"post-deploy": "php deploy/deployed_scripts/resetcache.php",
"watch": "livereload ./deploy/* ./deploy/www/* ./deploy/templates/* ./deploy/lib/control/* --debug",
"security-check": "yarn audit",
"time": "node -e \"console.log( new Date().toISOString() );\"",
"prettier": "npx prettier --write .",
"browse": "xdg-open https://localhost:8765",
"browse:epics": "xdg-open https://localhost:8765/epics",
"browse:repo": "xdg-open https://github.com/BitLucid/ninjawars/pulls",
"browse:deploybot": "xdg-open https://ninjawars.deploybot.com/",
"browse:ninjamaster": "xdg-open https://localhost:8765/ninjamaster",
"repo": "yarn browse:repo",
"unit-test": "test",
"cypress:install": "y add -D cypress",
"cypress": "npx cypress open",
"test": "karma start deploy/tests/karma.conf.js --single-run",
"test:watch": "karma start deploy/tests/karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BitLucid/ninjawars.git"
},
"keywords": [
"ninjawars.net",
"ninja",
"game",
"bbg"
],
"author": "Roy Ronalds",
"license": "CC-BY-SA-3.0",
"bugs": {
"url": "https://github.com/BitLucid/ninjawars/issues"
},
"engines": {
"node": ">=18.18.0"
},
"homepage": "https://github.com/BitLucid/ninjawars#readme",
"devDependencies": {
"@types/eslint": "^9.0.0",
"@types/jquery": "^3.5.29",
"cypress": "^13.6.6",
"eslint": "^9.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "5.1.0",
"husky": "^8.0.3",
"jasmine-core": "^5.1.1",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-requirejs": "^1.1.0",
"karma-sinon": "^1.0.5",
"prettier": "3.4.2",
"puppeteer": "^24.0.0",
"requirejs": "^2.3.6",
"sinon": "^19.0.0"
},
"packageManager": "[email protected]"
}