-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.26 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
53
54
55
{
"name": "@paramour/css",
"version": "1.0.0-rc.2",
"description": "Parametric CSS for the modern age",
"main": "index.mjs",
"type": "module",
"module": "./dist/paramour.min.css",
"bin": {
"paramour": "cli.mjs"
},
"scripts": {
"build": "node ./cli.mjs > ./dist/paramour.css",
"minify": "postcss ./dist/paramour.css > ./dist/paramour.min.css",
"dist": "run-s build minify",
"test": "tape './test/**/**.test.js' | tap-arc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paramours/css.git"
},
"keywords": [
"css",
"paramour",
"parametric",
"style",
"classes",
"custom-properties"
],
"contributors": [
{
"name": "Kristofer Joseph",
"url": "https://github.com/kristoferjoseph"
},
{
"name": "Cole Peters",
"url": "https://github.com/colepeters"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paramours/css/issues"
},
"homepage": "https://github.com/paramours/css#readme",
"dependencies": {
"color-to-hsla": "^0.1.1"
},
"devDependencies": {
"css-validator": "^0.11.0",
"cssnano": "^5.0.14",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0",
"tap-arc": "^0.3.5",
"tape": "^5.8.1"
}
}