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
|
{
"name": "serpentity",
"version": "0.1.3",
"homepage": "https://github.com/benbeltran/serpentity",
"authors": [
"Ben Beltran <ben@nsovocal.com>"
],
"description": "A simple entity framework inspired by ash",
"main": [
"./lib/serpentity/serpentity.js",
"./lib/serpentity/entity.js",
"./lib/serpentity/node.js",
"./lib/serpentity/node_collection.js",
"./lib/serpentity/component.js",
"./lib/serpentity/system.js"
],
"keywords": [
"entity"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"neon": "*"
}
}
|