-
-
Notifications
You must be signed in to change notification settings - Fork 352
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "susy",
"title": "Susy",
"version": "3.0.8",
"description": "Sass power-tools for web layout.",
"homepage": "http://oddbird.net/susy",
"author": "Miriam Eric Suzanne <miriam@oddbird.net>",
"main": "sass/_susy.scss",
"repository": {
"type": "git",
"url": "https://github.com/oddbird/susy"
},
"devDependencies": {
"mocha": "^5.0.0",
"node-sass": "^4.9.0",
"sass-lint": "^1.12.1",
"sass-true": "^4.0.0",
"sassdoc": "^2.5.0",
"sassdoc-theme-herman": "^3.0.0"
},
"keywords": [
"layout",
"grid",
"sass",
"responsive",
"rwd",
"semantic",
"eyeglass-module"
],
"eyeglass": {
"sassDir": "sass",
"exports": false,
"name": "susy",
"needs": "^1.0.0"
},
"scripts": {
"test": "npm run test-libsass && npm run compile",
"test-libsass": "node_modules/.bin/mocha",
"test-compile": "./node_modules/node-sass/bin/node-sass test/scss/test.scss test/css/test.css --include-path ./sass/",
"ag": "./node_modules/node-sass/bin/node-sass test/scss/ag.scss test/css/ag.css --include-path ./sass/",
"svg": "./node_modules/node-sass/bin/node-sass test/scss/svg.scss test/css/svg.css --include-path ./sass/",
"compile": "npm run test-compile && npm run ag && npm run svg",
"lint": "node_modules/.bin/sass-lint -vq",
"sassdoc": "sassdoc sass/",
"commit": "npm run lint && npm test && npm run sassdoc"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/oddbird/susy/issues"
},
"dependencies": {}
}