-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 754 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 754 Bytes
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
{
"name": "immutable-css-cli",
"description": "CSS linter for immutable selectors.",
"author": "John Otander",
"version": "1.1.1",
"main": "index.js",
"files": [
"cli.js"
],
"bin": {
"immutable-css": "cli.js"
},
"scripts": {
"test": "ava"
},
"repository": "johnotander/immutable-css-cli",
"keywords": [
"cli",
"cli-app",
"css",
"postcss",
"postcss-plugin",
"immutable",
"mutations"
],
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"file-exists": "^1.0.0",
"immutable-css": "^1.1.1",
"is-blank": "^1.1.0",
"is-css": "^1.0.0",
"meow": "^3.7.0",
"postcss": "^5.0.14",
"postcss-import": "^7.1.3"
},
"devDependencies": {
"ava": "*"
}
}