-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "postcss-squeaky-clean",
"version": "0.0.1",
"description": "Convert SASS files into CSS modules compatible files",
"repository": {
"type": "git",
"url": "https://github.com/naganowl/postcss-squeaky-clean.git"
},
"author": "Alan Wong <[email protected]>",
"contributors": [
{
"name": "Juan Carlos Medina",
"email": "[email protected]"
}
],
"bin": {
"squeaky-lint": "./scripts/verify-sqkd-class-names.js"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test": "jasmine specs/**/*.js"
},
"license": "MIT",
"dependencies": {
"cartesian-product": "^2.1.2",
"css-selector-parser": "^1.3.0",
"lodash.compact": "^3.0.1",
"lodash.difference": "^4.5.0",
"lodash.intersection": "^4.4.0",
"lodash.uniq": "^4.5.0",
"md5": "^2.2.1",
"postcss": "^5.2.13",
"specificity": "^0.4.1"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jasmine": "^3.3.1",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"mock-fs": "^4.8.0",
"mock-spawn": "^0.2.6",
"postcss-nested": "1.0.1",
"postcss-scss": "^0.4.1"
},
"peerDependencies": {
"postcss-nested": "1.0.1",
"postcss-scss": "^0.4.1",
"webpack": "^2 || ^3"
}
}