forked from mmun/grunt-broccoli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 1.92 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
{
"name": "grunt-broccoli",
"version": "1.1.4",
"description": "Broccoli build, watch and serve tasks for Grunt",
"main": "tasks/broccoli.js",
"tags": [
"gruntplugin",
"broccoli"
],
"scripts": {
"test": "grunt test"
},
"author": "Taras Mankovski <[email protected]>",
"contributors": [
"Fredrik Ekelund <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EmberSherpa/grunt-broccoli.git"
},
"dependencies": {
"broccoli": "^1.1.3",
"connect": "^3.6.3",
"copy-dereference": "^1.0.0",
"findup-sync": "^2.0.0",
"joi": "^11.0.1",
"lodash": "^4.17.4",
"rimraf": "^2.2.8",
"tiny-lr": "^1.0.5",
"walk-sync": "^0.3.2"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^2.0.0",
"broccoli-postcss": "^3.5.0",
"broccoli-sass-source-maps": "^4.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-eslint": "^20.1.0",
"sass": "^1.18.0"
},
"eslintConfig": {
"env": {
"node": true,
"commonjs": true
},
"extends": "eslint:recommended",
"rules": {
"curly": [
"error",
"all"
],
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"no-console": [
"error",
{
"allow": [
"warn",
"error",
"time",
"timeEnd",
"info"
]
}
],
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"one-var": [
2,
"never"
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"semi": [
"error",
"always"
]
}
}
}