forked from HautEnCouleur/hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.13 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "hello",
"description": "just another wordpress theme",
"version": "0.1.0",
"homepage": "https://github.com/HautEnCouleur/hello#readme",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/HautEnCouleur/hello.git"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"yo",
"yeoman",
"gulp-webapp",
"wordpress",
"sass",
"jade"
],
"main": "gulpfile.babel.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bugs": {
"url": "https://github.com/HautEnCouleur/hello/issues"
},
"devDependencies": {
"babel-core": "^5.5.6",
"browser-sync": "^2.2.1",
"del": "^1.1.1",
"eslint": "^1.8.0",
"eslint-config-airbnb": "^0.1.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-cache": "^0.2.8",
"gulp-eslint": "^1.0.0",
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.2.1",
"gulp-jade": "^1.1.0",
"gulp-load-plugins": "^0.10.0",
"gulp-minify-css": "^1.1.1",
"gulp-minify-html": "^1.0.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.0",
"gulp-size": "^1.2.1",
"gulp-sourcemaps": "^1.5.0",
"gulp-uglify": "^1.1.0",
"gulp-useref": "^1.1.1",
"gulp-util": "^3.0.7",
"imagemin-pngcrush": "^4.1.0",
"jade": "^1.11.0",
"main-bower-files": "^2.5.0",
"opn": "^1.0.1",
"phpjade": "^1.4.1",
"vinyl-ftp": "^0.4.5",
"wiredep": "^2.2.2"
},
"eslintConfig": {
"extends": "airbnb/legacy",
"env": {
"node": true,
"browser": true,
"jquery": true
},
"rules": {
"quotes": [
2,
"single"
],
"strict": [
2,
"global"
],
"comma-dangle": [
1,
"always-multiline"
],
"no-console": 0,
"func-names": 0,
"id-length": [
2,
{
"exceptions": [
"$",
"e",
"i",
"k",
"v",
"o",
"t"
]
}
]
}
},
"dependencies": {
"imagemin-pngcrush": "^4.1.0"
}
}