-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "@cycle/react-dom",
"version": "2.4.0",
"description": "Cycle.js driver that uses React DOM to render the view",
"author": "Andre Staltz <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/cyclejs/react-dom/issues",
"homepage": "https://github.com/cyclejs/react-dom",
"repository": "https://github.com/cyclejs/react-dom/tree/master",
"keywords": [
"react",
"react-dom",
"cyclejs",
"xstream",
"mvi",
"react-native",
"driver"
],
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index.d.ts",
"types": "lib/cjs/index.d.ts",
"peerDependencies": {
"@cycle/react": "^2.2.0",
"react": ">=16.4.x",
"react-dom": ">=16.4.x",
"xstream": "11.x.x"
},
"devDependencies": {
"@cycle/react": "^2.7.0",
"@cycle/run": "^5.1.0",
"@types/mocha": "^2.2.40",
"@types/node": "^10.5.2",
"@types/react": "16.4.x",
"@types/react-dom": "16.x.x",
"karma": "2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^3.0.12",
"karma-typescript-es6-transform": "^1.0.4",
"mocha": "^5.2.0",
"react": "16.5.2",
"react-dom": "16.5.2",
"ts-node": "^7.0.1",
"typescript": "^3.4.5",
"xstream": "11.x.x"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm run compile",
"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",
"test": "karma start karma.config.js"
}
}