-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "css-utils-margin",
"version": "0.1.0",
"description": "Immutable, CSS margin utilities.",
"main": "index.js",
"style": "index.css",
"scripts": {
"build": "npm run setup && npm run preprocess",
"build-test": "npm run setup && npm run preprocess-test",
"lint": "suitcss -c test/config.json index.css build/lint.css && rm build/lint.css",
"preprocess": "suitcss index.css build/build.css",
"preprocess-test": "suitcss -i test test/test.css build/test.css",
"setup": "npm install",
"watch": "npm run preprocess-test -- -w -v",
"test": "npm run lint"
},
"devDependencies": {
"stylelint-config-suitcss": "^5.0.0",
"suitcss-components-test": "*",
"suitcss-preprocessor": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dcalhoun/css-utils-margin.git"
},
"keywords": [
"css",
"utility",
"margin",
"atomic",
"postcss"
],
"author": "David Calhoun",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcalhoun/css-utils-margin/issues"
},
"homepage": "https://github.com/dcalhoun/css-utils-margin#readme"
}