forked from sunny-g/cycle-react-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.03 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
{
"name": "@sunny-g/cycle-react-driver",
"version": "0.4.11",
"description": "(un)official React driver for Cycle.js",
"author": "Sunny G <[email protected]> (http://blog.sunnyg.io)",
"homepage": "https://github.com/sunny-g/cycle-react-driver",
"repository": "https://github.com/sunny-g/cycle-react-driver",
"bugs": "https://github.com/sunny-g/cycle-react-driver/issues",
"license": "ISC",
"main": "commonjs/cycle-react-driver.js",
"module": "es2015/index.js",
"types": "es2015/index.d.ts",
"files": [
"commonjs",
"es2015",
"src",
"test"
],
"keywords": [
"cycle",
"react",
"rxjs",
"mostjs",
"xstream"
],
"scripts": {
"build": "tsc && webpack",
"build:watch": "tsc --watch & webpack --watch",
"prepublish": "npm test && npm run build",
"test": "jest --no-cache",
"test:watch": "npm test -- --watch"
},
"babel": {
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"testMatch": [
"**/test/*.test.(ts|js)"
],
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"transform": {
"\\.(ts|js)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"dependencies": {
"@cycle/run": "*",
"@types/react": "^15.0.21",
"@types/react-dom": "^0.14.23",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"xstream": "^10.4.0"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/node": "^7.0.12",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"ts-jest": "^19.0.1",
"ts-loader": "^2.0.1",
"typescript": "^2.2.1",
"webpack": "^2.3.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"publishConfig": {
"access": "public"
}
}