-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
91 lines (91 loc) · 2.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "kontra",
"version": "10.0.2",
"description": "Kontra HTML5 game development library",
"main": "kontra.js",
"module": "kontra.mjs",
"sideEffects": false,
"files": [
"kontra.js",
"kontra.mjs",
"kontra.min.js",
"kontra.min.mjs",
"kontra.d.ts"
],
"scripts": {
"start": "http-server -S -C cert.pem",
"test": "karma start --single-run",
"test:watch": "karma start",
"test:permutations": "node test/permutations",
"test:ts": "tsc test/typings/*.ts --noEmit",
"test:debug": "karma start --debug",
"eslint": "eslint ./{src,test}/",
"build": "gulp build",
"build:docs": "gulp build:docs",
"watch": "gulp watch",
"dist": "gulp dist",
"release": "sh tasks/release.sh",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/straker/kontra.git"
},
"keywords": [
"HTML5",
"JavaScript",
"game",
"library",
"js13k"
],
"engines": {
"node": ">=14.0.0"
},
"author": "Steven Lambert",
"license": "MIT",
"bugs": {
"url": "https://github.com/straker/kontra/issues"
},
"homepage": "https://github.com/straker/kontra",
"devDependencies": {
"@rollup/stream": "^2.0.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^8.4.1",
"eslint-plugin-mocha-no-only": "^1.1.1",
"glob": "^7.2.0",
"gulp": "^4.0.2",
"gulp-livingcss": "^5.0.0",
"gulp-plumber": "^1.2.1",
"gulp-preprocess": "git+https://github.com/straker/gulp-preprocess.git",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-size": "^4.0.1",
"gulp-terser": "^2.1.0",
"http-server": "^14.0.0",
"husky": "^7.0.2",
"karma": "^6.3.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.2.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"lint-staged": "^13.2.1",
"livingcss": "^7.0.1",
"marked": "^3.0.7",
"mocha": "^9.2.0",
"preprocess": "git+https://github.com/straker/preprocess.git",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"sinon": "^11.1.2",
"typescript": "^4.4.4",
"vinyl-source-stream": "^2.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
}
}