-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.25 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "creature-cache",
"version": "0.1.13",
"description": "A cache that can be generated server-side and brought back to life client-side.",
"repository": "ryanhefner/creature-cache",
"author": "Ryan Hefner <hi@ryanhefner.com> (https://www.ryanhefner.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanhefner/creature-cache/issues"
},
"homepage": "https://github.com/ryanhefner/creature-cache#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ryanhefner"
},
"keywords": [
"cache",
"rehydrate",
"resurrect",
"react-contentful",
"react-request-block"
],
"files": [
"es",
"src",
"types",
"umd",
"index.js"
],
"directories": {
"lib": "/src"
},
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "src/index.js",
"types": "types",
"scripts": {
"clean": "rm -f index.js && rm -rf es && rm -rf umd",
"prebuild": "npm run clean",
"build": "node ./tools/build.js",
"watch": "babel ./src -d . --ignore __mocks__,__tests__,**/*.test.js --watch",
"prepare": "npm run build",
"prepublishOnly": "node ./tools/build.js",
"push-release": "git push origin master && git push --tags",
"dtslint": "dtslint types",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"flatted": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-jest": "^26.6.3",
"babel-plugin-dev-expression": "^0.2.2",
"coveralls": "^3.1.0",
"dtslint": "^4.0.6",
"greenkeeper-lockfile": "^1.15.1",
"gzip-size": "^6.0.0",
"jest": "^26.6.3",
"pretty-bytes": "^5.4.1",
"rollup": "^2.33.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
]
}
}