-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 1.7 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": "pdg",
"description": "The cross platform Pixel Dust Game Engine for Node.js.",
"keywords": [
"game",
"engine",
"server",
"2d",
"color",
"opengl",
"coordinates",
"graphics",
"animation",
"physics",
"simulation",
"image",
"tile",
"sprite",
"Spriter",
"serialize",
"serialization",
"SCML",
"Chipmunk Physics"
],
"main": "lib/pdg.js",
"version": "0.9.5",
"author": {
"name": "Ed Zavada",
"url": "http://www.ezavada.com/pdg/javascript/html/",
"email": "[email protected]"
},
"engines": {
"node": ">= 4.2.0"
},
"licenses": [
{
"type": "MIT"
}
],
"homepage": "https://github.com/ezavada/pdg-node",
"repository": {
"type": "git",
"url": "https://github.com/ezavada/pdg-node.git"
},
"bugs": {
"url": "https://github.com/ezavada/pdg-node/issues",
"email": "[email protected]"
},
"directories":{
"man":"./man",
"lib":"./lib"
},
"scripts": {
"xinstall": "make build",
"test": "node test.js"
},
"devDependencies": {
"jasmine-node": ">=1.14",
"node-gyp": ">=0.13"
},
"readmeFilename": "README.md",
"contributors": [
{
"name": "Ed Zavada",
"email": "[email protected]"
},
{
"name": "Alan Davies",
"email": "[email protected]"
},
{
"name": "Ariel Butler",
"email": "[email protected]"
},
{
"name": "Nick Laiacona",
"email": "[email protected]"
},
{
"name": "Justin Holmes",
"email": "[email protected]"
}
],
"dependencies": {},
"optionalDependencies": {
"node-inspector": ">=0.7",
"net-repl": ">=0.1"
},
"dist": {
}
}