-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "ricochet",
"description": "Ricochet",
"version": "0.0.1",
"main": "build/js/app.min.js",
"scripts": {
"start": "./node_modules/.bin/grunt",
"lint": "./node_modules/.bin/eslint ./src/",
"deploy": "./node_modules/.bin/grunt build && ./node_modules/.bin/gh-pages --dist build/"
},
"repository": {
"type": "git",
"url": "[email protected]:14Plumes/ld38.git"
},
"browserify-shim": {
"./src/js/lib/stats.min.js": "Stats"
},
"dependencies": {
"lodash": "^4.6.1",
"phaser": "^2.6.2"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"browserify-shim": "^3.8.12",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"gh-pages": "^1.0.0",
"grunt": "^1.0.0",
"grunt-browserify": "^5.0.0",
"grunt-cache-bust": "^1.1.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.1.1",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-stylus": "^1.2.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-open": "^0.2.3",
"grunt-pngmin": "^1.0.2"
}
}