forked from GoogleChromeLabs/postcss-jit-props
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.39 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
{
"name": "postcss-jit-props",
"version": "1.0.13",
"description": "PostCSS plugin to insert variables from a data source based on discovered usage",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"css-vars",
"css-custom-properties"
],
"scripts": {
"test": "jest --coverage && eslint .",
"dev": "jest --coverage --watch",
"lint": "eslint ."
},
"author": "Adam Argyle <[email protected]>",
"license": "Apache-2.0",
"repository": "GoogleChromeLabs/postcss-jit-props",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^8.2.8"
},
"devDependencies": {
"clean-publish": "^2.1.0",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.2.1",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"postcss": "^8.2.8",
"simple-git-hooks": "^2.0.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 90
}
}
},
"dependencies": {
"tiny-glob": "^0.2.9"
}
}