-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.51 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
{
"name": "postcss-dialog-polyfill",
"version": "1.1.0",
"description": "PostCSS plugin which add selector needed by dialog-polyfill",
"main": "index.js",
"scripts": {
"test": "jest-ci --coverage && eslint-ci ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/komachi/postcss-dialog-polyfill.git"
},
"keywords": [
"dialog",
"css",
"postcss",
"postcss-plugin",
"polyfill",
"dialog-polyfill"
],
"author": "Anton Nesterov",
"license": "ISC",
"bugs": {
"url": "https://github.com/komachi/postcss-dialog-polyfill/issues"
},
"homepage": "https://github.com/komachi/postcss-dialog-polyfill#readme",
"dependencies": {
"postcss-selector-parser": "^6.0.2"
},
"devDependencies": {
"clean-publish": "^1.1.8",
"eslint": "^7.9.0",
"eslint-ci": "^1.0.0",
"eslint-plugin-jest": "^24.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-ci": "^0.1.1",
"jest-cli": "^26.4.2",
"lint-staged": "^10.4.0",
"postcss": "^8.0.5"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"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"
}
}