-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 978 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
{
"name": "index-ecs",
"version": "1.1.0",
"description": "Entity-Component-System for Node.js",
"keywords": [
"architecture",
"component",
"ecs",
"entity",
"game",
"index",
"pattern",
"system"
],
"homepage": "https://github.com/blinkdog/node-ecs",
"bugs": "https://github.com/blinkdog/node-ecs/issues",
"license": "AGPL-3.0",
"author": "Patrick Meade <veloxi@ticon.net>",
"files": [
"CHANGELOG.md",
"index.js",
"lib",
"LICENSE",
"package.json",
"README.md"
],
"main": "index",
"repository": {
"type": "git",
"url": "https://github.com/blinkdog/node-ecs.git"
},
"dependencies": {
"underscore": "1.8.3",
"uuid": "3.2.1"
},
"devDependencies": {
"coffeescript": "2.2.3",
"istanbul": "0.4.5",
"mocha": "5.0.4",
"should": "13.2.1"
}
}