-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "@cycle/react",
"version": "2.10.0",
"description": "Utilities to interoperate between Cycle.js and React",
"author": "Andre Staltz <contact@staltz.com>",
"license": "MIT",
"bugs": "https://github.com/cyclejs/react/issues",
"homepage": "https://github.com/cyclejs/react",
"repository": "https://github.com/cyclejs/react/tree/master",
"keywords": [
"react",
"cyclejs",
"xstream",
"mvi",
"react-native",
"driver"
],
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index.d.ts",
"types": "lib/cjs/index.d.ts",
"files": [
"lib/cjs/*"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
},
"peerDependencies": {
"@cycle/run": "5.x.x",
"react": ">=16.0",
"xstream": "11.x.x"
},
"devDependencies": {
"@cycle/isolate": "^5.2.0",
"@cycle/run": "^5.5.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/react": "17.0.38",
"c8": "^7.11.0",
"mocha": "^9.1.3",
"prettier": "^2.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"symbol-observable": "^1.2.0",
"ts-node": "^10.4.0",
"typescript": "4.5.4",
"xstream": "11.14.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"format": "prettier --write ./{src,test}/**/*.{ts,tsx,js}",
"compile": "npm run compile-cjs && npm run compile-es6",
"compile-cjs": "tsc --module commonjs --outDir ./lib/cjs",
"compile-es6": "echo 'TODO' : tsc --module es6 --outDir ./lib/es6",
"coverage": "c8 --reporter=lcov npm test",
"prepublishOnly": "npm run compile",
"test": "mocha test/*.ts --require ts-node/register --recursive"
}
}