forked from larsenwork/postcss-easing-gradients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "postcss-easing-gradients",
"version": "3.0.1",
"engines": {
"node": ">=6.0.0"
},
"description": "PostCSS plugin to create smooth linear-gradients that approximate easing functions.",
"scripts": {
"test": "jest && eslint *.js",
"lintfix": "eslint --fix --ext .js --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/larsenwork/postcss-easing-gradients.git"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"gradients"
],
"author": "Andreas Larsen <[email protected]> (https://larsenwork.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/larsenwork/postcss-easing-gradients/issues"
},
"homepage": "https://github.com/larsenwork/postcss-easing-gradients",
"dependencies": {
"chroma-js": "^1.3.7",
"easing-coordinates": "^2.0.0",
"postcss": "^7.0.2",
"postcss-value-parser": "^3.3.0"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-logux": "^25.0.1",
"eslint-config-postcss": "^3.0.6",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"prettier-eslint": "^8.8.2"
},
"eslintConfig": {
"plugins": [
"prettier"
],
"env": {
"jest": true
},
"parserOptions": {
"ecmaVersion": 6
},
"extends": [
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "es5",
"parser": "flow"
}
],
"max-len": [
"error",
120
],
"func-style": [
"error",
"declaration",
{
"allowArrowFunctions": true
}
]
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
}
}