-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "react-evoke",
"version": "2.0.0",
"author": "Alexander M. Sauer-Budge",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amsb/react-evoke.git"
},
"keywords": [
"react",
"state management",
"immer"
],
"main": "dist/react-evoke.cjs.js",
"module": "dist/react-evoke.esm.js",
"browser": "dist/react-evoke.umd.js",
"dependencies": {
"immer": "^9.0.6",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@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.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/react-hooks": "^5.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"jest": "^26.6.3",
"react-test-renderer": "^17.0.1",
"rollup": "^2.34.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"peerDependencies": {
"react": "^17.0.1"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"prepare": "npm run build",
"dev": "rollup -c -w",
"test": "NODE_ENV=test jest"
},
"files": [
"dist"
],
"jest": {
"roots": [
"<rootDir>"
],
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules"
]
}
}