-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-restore",
"version": "0.7.2",
"description": "A predictable and observable state container for React apps",
"main": "lib/index.js",
"author": "Jordan Muir <[email protected]> (https://github.com/floating)",
"files": [
"lib"
],
"browserslist": [
"last 2 Chrome versions"
],
"scripts": {
"test": "npm run build && jest --env=jsdom && npm run size",
"build": "rollup -c rollup.config.js -f umd --bundleConfigAsCjs -n restore",
"prepublishOnly": "npm test",
"size": "node -e \"process.stdout.write('Gzipped: ')\" && gzip-size lib/index.js",
"watch": "npm run build && watch-run -p 'src/**' npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/floating/restore.git"
},
"bugs": {
"url": "https://github.com/floating/restore/issues"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-function-bind": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/register": "7.25.9",
"@rollup/plugin-babel": "^6.0.4",
"gzip-size-cli": "5.1.0",
"jest-cli": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "4.30.1",
"rollup-plugin-node-resolve": "5.2.0",
"standard": "17.1.2",
"watch-run": "1.2.5"
},
"peerDependencies": {
"react": ">=17.0.2"
},
"standard": {
"ignore": [],
"parser": "babel-eslint"
},
"jest": {
"testPathIgnorePatterns": [
"src"
]
},
"keywords": [
"restore",
"store",
"state",
"predictable",
"observable",
"react",
"reactjs",
"replay",
"time travel"
],
"license": "MIT"
}