-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.19 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
56
57
58
59
60
{
"name": "postcss-fuss",
"version": "0.2.0",
"description": "PostCSS plugin to define and compose Functional CSS rules",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"functional-css",
"immutable-css",
"functional-style-sheets"
],
"author": "caesarsol <[email protected]>",
"license": "MIT",
"repository": "caesarsol/postcss-fuss",
"bugs": {
"url": "https://github.com/caesarsol/postcss-fuss/issues"
},
"homepage": "https://github.com/caesarsol/postcss-fuss",
"engines": {
"node": ">=10",
"yarn": ">=1.2.1"
},
"dependencies": {
"lodash": "^4.17.10",
"postcss": "^5.2.6"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^18.0.0"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"rules": {
"semi": [
"warn",
"never"
],
"comma-dangle": [
"warn",
"always-multiline"
],
"no-use-before-define": [
"error",
"nofunc"
],
"max-len": [
"warn",
100
]
},
"env": {
"jest": true
}
}
}