-
-
Notifications
You must be signed in to change notification settings - Fork 389
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1008 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1008 Bytes
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": "jss-plugin-cache",
"description": "JSS plugin that caches the rules and delivers insane performance.",
"version": "3.0.0",
"license": "MIT",
"homepage": "http://cssinjs.org/jss-cache",
"main": "dist/jss-plugin-cache.cjs.js",
"module": "dist/jss-plugin-cache.esm.js",
"typings": "./src/index.d.ts",
"author": {
"name": "Oleg Slobodskoi",
"email": "oleg008@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:cssinjs/jss.git"
},
"bugs": {
"url": "https://github.com/cssinjs/jss/issues/new?title=[jss-plugin-cache]"
},
"files": [
"dist",
"src",
"changelog.md",
"LICENSE"
],
"keywords": [
"cssinjs",
"css-in-js",
"css in js",
"jss",
"plugin",
"cache",
"insane"
],
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},
"devDependencies": {
"jss": "^9.0.0"
},
"peerDependencies": {
"jss": "^9.0.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
}
}