-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 891 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
{
"name": "spacing",
"version": "0.3.0",
"description": "CSS spacing classes",
"author": "Ryan Van Etten",
"license": "CC0-1.0",
"main": "main.css",
"scripts": {
"start": "npm run css",
"precss": "concat class.css data.css root.css -o module.css",
"css": "postcss module.css --use postcss-custom-properties postcss-calc --no-map -o main.css"
},
"homepage": "https://github.com/ryanve/spacing",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanve/spacing.git"
},
"bugs": {
"url": "https://github.com/ryanve/spacing/issues"
},
"keywords": [
"css",
"margin",
"padding",
"spacing",
"margins",
"paddings",
"proximity",
"functional-css"
],
"devDependencies": {
"concat": "^1.0.3",
"postcss-calc": "^6.0.1",
"postcss-cli": "^4.1.1",
"postcss-custom-properties": "^6.1.0"
}
}