-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
119 lines (119 loc) · 3.77 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "realm-react-redux",
"version": "0.0.9",
"description": "Use redux patterns with realm as your store.",
"main": "./lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c -o dist/realm-react-redux.js",
"build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c -o dist/realm-react-redux.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"clean": "rimraf lib dist es coverage",
"lint": "eslint src test; exit 0;",
"prepare": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/lolatravel/realm-react-redux.git"
},
"files": [
"dist",
"lib",
"src",
"es"
],
"keywords": [
"react",
"reactjs",
"flux",
"redux",
"realm",
"persistent"
],
"author": "Kevin LaFlamme",
"license": "MIT",
"bugs": {
"url": "https://github.com/lolatravel/realm-react-redux/issues"
},
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.4",
"@babel/plugin-external-helpers": "7.2.0",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.5.4",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "7.2.0",
"@babel/plugin-transform-block-scoped-functions": "7.2.0",
"@babel/plugin-transform-block-scoping": "7.4.4",
"@babel/plugin-transform-classes": "7.4.4",
"@babel/plugin-transform-destructuring": "7.5.0",
"@babel/plugin-transform-for-of": "7.4.4",
"@babel/plugin-transform-function-name": "7.4.4",
"@babel/plugin-transform-modules-commonjs": "7.5.0",
"@babel/plugin-transform-object-super": "7.2.0",
"@babel/plugin-transform-parameters": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-shorthand-properties": "7.2.0",
"@babel/plugin-transform-template-literals": "7.4.4",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.4.4",
"@babel/runtime": "7.5.4",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-plugin-istanbul": "5.1.4",
"codecov": "3.6.5",
"cross-env": "5.2.0",
"eslint": "6.0.1",
"eslint-config-semistandard": "14.0.0",
"eslint-config-standard": "13.0.1",
"eslint-config-standard-jsx": "7.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.14.2",
"eslint-plugin-react-native": "3.7.0",
"eslint-plugin-standard": "4.0.0",
"jest": "24.8.0",
"nyc": "14.1.1",
"react": "16.8.6",
"react-redux": "7.1.0",
"realm": "2.29.1",
"redux": "4.0.4",
"rimraf": "2.6.3",
"rollup": "1.17.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-uglify": "6.0.2"
},
"peerDependencies": {
"react": "^16.8.0",
"react-redux": "^7.0.0",
"redux": "^4.0.0",
"realm": "^2.28.0"
},
"dependencies": {
"hoist-non-react-statics": "3.3.0",
"invariant": "2.2.4",
"lodash.isplainobject": "4.0.6",
"prop-types": "15.7.2",
"react-is": "16.8.6"
},
"jest": {
"coverageDirectory": "./coverage/",
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/",
"__tests__/utils.js"
]
}
}