forked from Andarist/stylis-plugin-extra-scope
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "stylis-plugin-extra-scope",
"version": "0.2.1",
"description": "Stylis plugin which adds extra scope to each produced CSS rule.",
"main": "dist/stylis-plugin-extra-scope.js",
"module": "dist/stylis-plugin-extra-scope.es.js",
"files": [
"dist"
],
"scripts": {
"pretest": "npm run build",
"test": "jest --env=node",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepare": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/stylis-plugin-extra-scope.git"
},
"keywords": [
"stylis",
"plugin"
],
"author": "Mateusz Burzyński <[email protected]> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/stylis-plugin-extra-scope/issues"
},
"homepage": "https://github.com/Andarist/stylis-plugin-extra-scope#readme",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-jest": "^25.1.0",
"husky": "^4.2.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.3.3",
"stylis": "^3.5.4"
}
}