forked from dogandpony/sushi-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.08 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
{
"name" : "sushi-base",
"version" : "2.3.0",
"description" : "Extensible, scalable, Sass-based, OOCSS base structure for CSS projects.",
"main" : "example.main.scss",
"scripts" : {
"test" : "npm run lint && mocha test/run.js",
"lint" : "./node_modules/.bin/stylelint \"**/*.scss\" --syntax scss"
},
"repository" : {
"type" : "git",
"url" : "git+https://github.com/dogandpony/sushi-base.git"
},
"keywords" : [
"oocss",
"sass",
"bem",
"itcss",
"css"
],
"author" : "Bill Addison <bill@dogandponystudios.com>",
"contributors" : [
"Caio Costa <caiocrcosta@gmail.com>",
"Jorge Veloso <jorge@dogandponystudios.com>"
],
"license" : "Apache-2.0",
"bugs" : {
"url" : "https://github.com/dogandpony/sushi-base/issues"
},
"homepage" : "https://github.com/dogandpony/sushi-base#readme",
"dependencies" : {
"sass-mq" : "^3.2.9"
},
"devDependencies" : {
"glob" : "^7.0.5",
"mocha" : "^3.0.2",
"node-sass" : "^3.8.0",
"sass-true" : "^2.1.3",
"stylelint" : "^7.8.0",
"stylelint-scss" : "^1.4.1"
}
}