-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
41 lines (41 loc) · 967 Bytes
/
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
{
"name": "sassy-lists",
"title": "SassyLists",
"version": "3.0.1",
"description": "A Sass API for lists.",
"scripts": {
"build": "rm -rf dist/ && mkdir dist/ && cat stylesheets/**/* > dist/_SassyLists.scss",
"test": "mocha test/index.js",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/at-import/SassyLists"
},
"keywords": [
"sass",
"scss",
"list",
"lists",
"eyeglass-module"
],
"author": "Kitty Giraudel",
"main": "stylesheets/_SassyLists.scss",
"style": "stylesheets/_SassyLists.scss",
"eyeglass": {
"name": "SassyLists",
"sassDir": "stylesheets",
"needs": "*",
"exports": false
},
"license": "MIT",
"bugs": {
"url": "https://github.com/at-import/SassyLists/issues"
},
"homepage": "https://at-import.github.io/SassyLists",
"devDependencies": {
"mocha": "^2.3.4",
"sass-true": "^2.0.3",
"sassdoc": "^2.1.19"
}
}