-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.62 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
{
"name": "slot-pmvc-pixijs",
"version": "1.0.0",
"description": "Slot Game Demo in HTML5 and JavaScript using PureMVC and Pixi.js",
"main": "src/App.js",
"scripts": {
"test": "test"
},
"author": "Murali Saripalli",
"license": "ISC",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.8.8",
"gulp-jshint": "^2.0.1",
"gulp-order": "^1.1.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"jsdoc": "^3.4.0",
"jshint": "^2.9.3",
"jshint-stylish": "^2.2.1",
"pixi.js": "^4.0.0",
"puremvc": "^1.0.3",
"streamqueue": "^1.1.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/muralisaripalli/slot-pmvc-pixijs.git"
},
"keywords": [
"Slot",
"Game",
"PureMVC",
"PixiJS",
"HTML5",
"JavaScript"
],
"bugs": {
"url": "https://github.com/muralisaripalli/slot-pmvc-pixijs/issues"
},
"homepage": "https://github.com/muralisaripalli/slot-pmvc-pixijs#readme",
"jshintConfig": {
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"futurehostile": true,
"latedef": "nofunc",
"maxcomplexity": 20,
"maxdepth": 3,
"maxparams": 4,
"nocomma": false,
"nonew": true,
"notypeof": true,
"strict": "implied",
"undef": false,
"unused": false,
"browser": true,
"devel": true,
"globals": {
"puremvc": true,
"slot": true,
"PXRoot": true,
"PXRenderer": true,
"PIXI": true,
"Power1": true,
"TweenLite": true,
"Linear": true
}
}
}