-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 834 Bytes
/
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
{
"name": "monster-tower",
"version": "1.0.0",
"description": "Monster Tower is a game inspired by Sim Tower.",
"main": "",
"dependencies": {
"gulp": "^3.9.0"
},
"devDependencies": {
"browser-sync": "^2.10.1",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.1",
"gulp-watch": "^4.3.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "leffe108",
"license": "GPL-2.0",
"eslintConfig": {
"extends": "eslint:recommended",
"ecmaFeatures": {},
"env": {
"browser": true,
"jquery": true
},
"rules": {
"comma-dangle": [
2,
"always-multiline"
],
"semi": [
2,
"always"
]
}
}
}