-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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": "picoes",
"version": "1.1.1",
"description": "Pico Entity System for JavaScript",
"main": "index.js",
"files": [
"src",
"index.js"
],
"scripts": {
"test": "jest --coverage",
"doc": "node --experimental-vm-modules ./node_modules/.bin/esdoc",
"deploy": "gh-pages -d docs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayebear/picoes.git"
},
"keywords": [
"entity",
"component",
"system",
"ecs",
"picoes"
],
"author": "Eric Hebert",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayebear/picoes/issues"
},
"homepage": "https://github.com/ayebear/picoes#readme",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.17.10",
"babel-jest": "^28.1.0",
"coveralls": "^3.1.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"esdoc-undocumented-identifier-plugin": "^1.0.0",
"esdoc-unexported-identifier-plugin": "^1.0.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3"
},
"type": "module"
}