-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 868 Bytes
/
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
{
"name": "postcss-scopify",
"version": "1.0.0",
"description": "PostCSS plugin that adds a user input scope to each selector",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"scope",
"scoped css",
"css post processing"
],
"author": "pazams <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pazams/postcss-scopify.git"
},
"bugs": {
"url": "https://github.com/pazams/postcss-scopify/issues"
},
"homepage": "https://github.com/pazams/postcss-scopify",
"dependencies": {
"postcss-selector-parser": "^6.0.6"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^8.4.0",
"postcss": "^8.3.0"
},
"peerDependencies": {
"postcss": "^8.3.0"
},
"scripts": {
"test": "istanbul cover ./node_modules/.bin/mocha test/*.js"
}
}