-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 1.7 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
{
"name": "css-burrito",
"version": "0.6.6",
"description": "An organizational Sass template",
"main": "js/src/index.js",
"scripts": {
"burrito": "node js/lib/index.js",
"start": "nodemon --ignore js/lib --exec npm run --silent build",
"build": "npm run --silent build:lint && npm run --silent build:babel",
"build:lint": "eslint js/src; exit 0",
"build:babel": "babel js/src --out-dir js/lib"
},
"preferGlobal": "true",
"bin": {
"burrito": "./js/lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonreece/css-burrito.git"
},
"author": "Jason Reece <jason.r.reece@gmail.com> (http://www.jasonreece.com/)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jasonreece/css-burrito/blob/master/LICENSE.md"
}
],
"keywords": [
"sass",
"scss",
"css",
"template",
"oocss",
"smacss",
"web",
"front-end"
],
"bugs": {
"url": "https://github.com/jasonreece/css-burrito/issues"
},
"dependencies": {
"chalk": "^1.1.3",
"fs-extra": "^2.1.2",
"prompt": "^1.0.0",
"yargs": "^7.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.2.2",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-compat": "^1.0.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "^6.9.0",
"nodemon": "^1.11.0"
},
"babel": {
"presets": [
"env"
]
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"compat"
],
"rules": {
"no-underscore-dangle": 0,
"no-console": 0
}
},
"browserslist": [
"> 1%"
]
}