-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1001 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1001 Bytes
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
{
"name": "@yellowinnovation/node-necs",
"version": "1.0.9",
"description": "Tiny ECS that does one job",
"keywords": [
"ecs",
"unity",
"entity",
"simple",
"game",
"video",
"component",
"system"
],
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"doc": "jsdoc2md *.js > doc/doc.md"
},
"repository": {
"type": "git",
"url": "git://github.com/YellowInnovation/node-necs.git"
},
"publishConfig": {
"access": "public"
},
"author": "Martin Hammerchmidt <martin.hammerchmidt@gmail.com>",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/YellowInnovation/node-necs/issues"
},
"homepage": "https://github.com/YellowInnovation/node-necs#readme",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.topairs": "^4.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.0.0",
"nyc": "^15.0.0"
}
}