-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.4 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
{
"name": "postcss-autoreset",
"version": "3.1.0",
"description": "PostCSS plugin for partial styles reset",
"main": "index.js",
"scripts": {
"lint": "eslint index.js lib/ test/",
"test": "yarn run lint && yarn run test-unit",
"test-unit": "mocha test/index.js",
"test-dev": "mocha -w test/index.js",
"precommit": "yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/maximkoretskiy/postcss-autoreset.git"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"reset",
"autoreset",
"isolation"
],
"author": "Maksim Koretskiy",
"license": "MIT",
"files": [
"README.md",
"index.js",
"lib/"
],
"bugs": {
"url": "https://github.com/maximkoretskiy/postcss-reset/issues"
},
"homepage": "https://github.com/maximkoretskiy/postcss-reset",
"dependencies": {
"postcss-js": "^4.0.1"
},
"devDependencies": {
"clean-publish": "^4.2.0",
"eslint": "^7.10.0",
"eslint-plugin-mocha": "^8.0.0",
"husky": "^4.3.0",
"mocha": "^10.3.0",
"postcss": "^8.1.1"
},
"peerDependency": {
"postcss": "^8.1.1"
},
"optionalPeerDependencies": {
"postcss-js": "^3.0.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended",
"plugin:mocha/recommended"
]
}
}