-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "postcss-selector-prefix",
"version": "5.0.1",
"description": "PostCSS plugin to add a selector prefix to all selectors.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"prefix",
"selector"
],
"scripts": {
"unit": "node --test index.test.js",
"test": "npm run unit && eslint ."
},
"author": "Robbert Korving <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/robkorv/postcss-selector-prefix.git"
},
"bugs": {
"url": "https://github.com/robkorv/postcss-selector-prefix/issues"
},
"homepage": "https://github.com/robkorv/postcss-selector-prefix",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"postcss": "^8.4.27"
},
"devDependencies": {
"eslint": "^8.47.0",
"postcss": "^8.4.27"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
]
}
}