-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
65 lines (65 loc) · 1.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
{
"name": "@cycle/react-native",
"version": "3.0.0",
"description": "Cycle.js driver that uses React Native to render",
"author": "Andre Staltz <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/cyclejs/react-native/issues",
"repository": "https://github.com/cyclejs/react-native/tree/master",
"keywords": [
"react",
"cyclejs",
"xstream",
"mvi",
"react-native",
"driver"
],
"files": [
"lib"
],
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index.d.ts",
"dependencies": {
"@cycle/react": "2.x",
"xstream": "11.x.x"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.64.0"
},
"devDependencies": {
"@cycle/run": "^5.4.0",
"@huston007/react-native-mock": "^0.3.3",
"@types/mocha": "^9.0.0",
"@types/node": "^14.6.0",
"@types/react": "16.9.46",
"@types/react-native": "0.63.8",
"@types/react-test-renderer": "^16.9.3",
"babel-cli": "^6.26.0",
"babel-preset-react-native": "4.0.1",
"expo": "38.x.x",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"react": ">=17.0.2",
"react-native": ">=0.64.0",
"react-test-renderer": "17.0.2",
"ts-node": "^10.4.0",
"typescript": "4.5.2",
"xstream": "^11.14.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "rm -rf lib && npm run compile-cjs && npm run compile-es6",
"compile-cjs": "tsc --module commonjs --outDir ./lib/cjs",
"compile-es6": "tsc --module es6 --outDir ./lib/es6",
"test": "ts-node -P test/tsconfig.json --require @huston007/react-native-mock/mock.js node_modules/mocha/bin/mocha test/*.ts"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
}
}