forked from Nozbe/withObservables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.59 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
{
"name": "@nozbe/with-observables",
"version": "1.0.6-0",
"main": "dist/with-observables.cjs.js",
"module": "dist/with-observables.esm.js",
"scripts": {
"build": "rollup -c",
"flow": "flow check",
"eslint": "eslint ./src -c ./.eslintrc.yml --cache --cache-location ./.cache/.eslintcache",
"test": "jest --config=./jest.config.js --forceExit --detectOpenHandles --no-cache",
"ci:check": "concurrently 'yarn test' 'yarn eslint' 'yarn flow' --kill-others-on-fail"
},
"files": [
"dist",
"src",
"index.d.ts",
"CHANGELOG.md"
],
"author": "@Nozbe",
"homepage": "https://github.com/Nozbe/withObservables#readme",
"bugs": "https://github.com/Nozbe/withObservables/issues",
"license": "MIT",
"keywords": [
"react",
"react-native",
"hoc",
"reactive",
"rxjs",
"watermelondb"
],
"repository": {
"type": "git",
"url": "https://github.com/Nozbe/withObservables.git"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"rxjs": "^6.4.0"
},
"peerDependencies": {
"react": "^16.4.2"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.3.4",
"@babel/plugin-transform-classes": "^7.3.4",
"@babel/plugin-transform-destructuring": "^7.3.2",
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/plugin-transform-function-name": "^7.2.0",
"@babel/plugin-transform-literals": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/runtime": "^7.3.4",
"babel-core": "^7.0.0-0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.5.0",
"concurrently": "^4.1.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.110.0",
"jest": "^24.5.0",
"rollup": "^1.23.0",
"rollup-cli": "^1.0.9",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.0.0"
}
}