-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
52 lines (52 loc) · 1.27 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": "concise.css",
"bin": {
"concise": "./bin/index.js"
},
"main": "src/index.js",
"version": "5.0.0",
"description": "A CSS pre-processor that makes web design more efficient and intuitive. Give up the bloat. Stop tripping over your classes. Be Concise.",
"license": "MIT",
"keywords": [
"css",
"mobile-first",
"responsive",
"front-end",
"preprocessor",
"web",
"lightweight",
"postcss",
"design"
],
"homepage": "http://concisecss.com",
"bugs": "https://github.com/ConciseCSS/concise.css/issues",
"repository": {
"type": "git",
"url": "https://github.com/ConciseCSS/concise.css"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "tape ./test/index.js | tap-diff",
"local-install": "npm link"
},
"dependencies": {
"autoprefixer": "^9.7.5",
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"postcss": "^7.0.27",
"postcss-custom-media": "^7.0.8",
"postcss-easy-import": "^3.0.0",
"postcss-if-media": "^1.0.3",
"postcss-input-range": "^4.0.0",
"postcss-lh": "^2.0.2",
"postcss-media-minmax": "^4.0.0",
"postcss-nested": "^4.2.1",
"postcss-strip-inline-comments": "^0.1.5"
},
"devDependencies": {
"tap-diff": "^0.1.1",
"tape": "^4.13.2"
}
}