-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.66 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.66 KB
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
{
"name": "maze-of-shadow",
"version": "0.0.1",
"description": "Generate random mazes.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NealRame/maze-of-shadow.git"
},
"keywords": [
"Maze"
],
"author": "Neal.Rame. <contact@nealrame.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/NealRame/maze-of-shadow/issues"
},
"homepage": "https://github.com/NealRame/maze-of-shadow#readme",
"devDependencies": {
"babel": "^5.8.21",
"babel-runtime": "^5.8.25",
"babelify": "^6.1.3",
"browserify": "^11.2.0",
"browsernizr": "^1.1.0",
"chalk": "^1.1.0",
"gulp": "^3.9.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"underscore": "^1.8.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.3.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"optional": "runtime"
}
]
]
},
"eslintConfig": {
"ecmaFeatures": {
"modules": true
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"camelcase": 0,
"curly": [
1,
"multi-line"
],
"key-spacing": 0,
"new-cap": [
1,
{
"newIsCap": true,
"capIsNew": false
}
],
"no-multi-spaces": 0,
"quotes": [
1,
"single"
],
"space-infix-ops": 0,
"strict": [
2,
"never"
]
}
}
}