-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.79 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
69
70
71
72
73
74
{
"name": "react-rematch",
"version": "1.0.0",
"publishConfig": {
"tag": "next"
},
"description": "React bindings tailored to Rematch models",
"keywords": [
"react",
"rematch",
"connect"
],
"homepage": "https://github.com/rematch/rematch",
"bugs": {
"url": "git+https://github.com/rematch/rematch/issues"
},
"license": "ISC",
"main": "dist/react.cjs.js",
"module": "dist/react.esm.js",
"browser": "dist/react.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rematch/rematch.git"
},
"scripts": {
"test": "jest",
"release": "release-it",
"build": "npm run clean && npm test && NODE_ENV=production rollup -c",
"clean": "npm run clean:dist & npm run clean:build",
"clean:build": "npx rimraf build",
"clean:dist": "npx rimraf dist"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"NODE_ENV": "test"
},
"setupTestFrameworkScriptFile": "./test/_setup.ts"
},
"devDependencies": {
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"recompose": "^0.30.0",
"@rematch/core": "^1.0.6",
"regenerator-runtime": "^0.12.1",
"release-it": "^7.6.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^3.0.0",
"ts-jest": "^23.4.2",
"typescript": "^3.1.6",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"react": "^16.0.0",
"@rematch/core": "^1.0.6"
},
"authors": [
"Sam Richard <sam.richard@gmail.com> (https://github.com/d3dc)"
],
"dependencies": {
"@types/jest": "^23.3.9",
"lodash": "^4.17.11",
"react-redux": "^5.1.0"
}
}