-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.25 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
{
"name": "postcss-add-root-selectors",
"version": "0.1.4",
"description": "PostCSS plugin adds root selectors to all other rules",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"root"
],
"scripts": {
"test": "jest --coverage && eslint ."
},
"author": "Dz",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^7.0.35 || ^8.1.5"
},
"repository": "dingzc2450/postcss-add-root-selectors",
"devDependencies": {
"clean-publish": "^1.1.8",
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"postcss": "^8.1.5",
"postcss7": "npm:postcss@7.0.35"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}