-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "sample-game",
"version": "0.0.0",
"description": "A Sample game",
"private": true,
"main": "index.js",
"scripts": {
"build": "node build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SplatJS/splatjs-ecs-blank-project.git"
},
"keywords": [],
"author": "Eric Lathrop <[email protected]> (http://ericlathrop.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SplatJS/splatjs-ecs-blank-project/issues"
},
"homepage": "https://github.com/SplatJS/splatjs-ecs-blank-project",
"devDependencies": {
"browserify": "^7.0.0",
"jshint": "^2.5.11"
},
"dependencies": {
"splatjs": "SplatJS/SplatJS#ecs"
},
"jshintConfig": {
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 4,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"quotmark": "double",
"unused": "strict",
"trailing": true,
"browser": true,
"devel": true,
"globalstrict": true,
"globals": {
"module": false,
"require": false
}
}
}