-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 946 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
{
"name": "stylis-class-specificity-plugin",
"version": "0.0.4",
"description": "Adds specificity to simple class selectors (ie transforms .my-class into .my-class.my-class)",
"main": "lib/build.js",
"scripts": {
"build": "babel src/index.js -o lib/build.js",
"demo": "babel src/usage.js -o lib/show.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kat-ya/stylis-class-specificity-plugin.git"
},
"keywords": [
"specificity",
"stylis",
"css"
],
"author": "kat-ya",
"license": "MIT",
"bugs": {
"url": "https://github.com/kat-ya/stylis-class-specificity-plugin/issues"
},
"homepage": "https://github.com/kat-ya/stylis-class-specificity-plugin#readme",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"jest": "^24.9.0"
},
"peerDependencies": {
"stylis": "^3.0.0"
}
}