-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 944 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": "@concisecss/cli",
"version": "0.1.0",
"description": "The Command-line Interface for Concise CSS",
"main": "index.js",
"bin": {
"concise": "index.js"
},
"dependencies": {
"@concisecss/preprocessor": "github:ConciseCSS/preprocessor",
"chalk": "^2.3.0",
"chokidar": "^1.7.0",
"cliparse": "^0.2.8",
"cssnano": "^3.10.0",
"postcss": "^6.0.14"
},
"devDependencies": {},
"scripts": {
"test": "node index.js compile test/input.ccss test/output.css",
"test:watch": "node index.js compile -w test/input.ccss test/output.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConciseCSS/cli.git"
},
"keywords": [
"cli",
"concise",
"css"
],
"author": "James Kolce <contact@jameskolce.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ConciseCSS/cli/issues"
},
"homepage": "https://github.com/ConciseCSS/cli#readme"
}