-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.69 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "remcycle",
"version": "0.2.21-beta.1",
"description": "a Cycle.js-based component factory and set of higher-order-components built on cycle-react-driver, cycle-redux-driver, and most",
"author": "Sunny G <[email protected]> (http://blog.sunnyg.io)",
"homepage": "https://github.com/sunny-g/remcycle",
"repository": "https://github.com/sunny-g/remcycle",
"bugs": "https://github.com/sunny-g/remcycle/issues",
"license": "ISC",
"main": "commonjs/remcycle.js",
"module": "es2015/index.js",
"types": "es2015/index.d.ts",
"files": [
"commonjs",
"es2015",
"src",
"test"
],
"keywords": [
"cycle",
"react",
"redux",
"mostjs"
],
"scripts": {
"build": "tsc && webpack",
"build:watch": "tsc --watch & webpack --watch",
"prepare": "tsc && webpack -p",
"prepublishOnly": "npm test && tsc && webpack -p",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"babel": {
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"testMatch": [
"**/test/*.test.(ts|js)",
"**/test/hoc/*.test.(ts|js)"
],
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"transform": {
"^.+\\.js": "<rootDir>/node_modules/babel-jest",
"^.+\\.ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"/node_modules/(?!(@sunny-g/cycle-utils/es2015))/"
],
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-dom/test-utils"
]
},
"dependencies": {
"@cycle/isolate": "^2.1.0",
"@most/hold": "^2.0.0",
"@motorcycle/collection": "^1.1.0",
"@sunny-g/cycle-react-driver": "^0.4.11",
"@sunny-g/cycle-redux-driver": "^0.1.17",
"@sunny-g/cycle-utils": "^0.2.0",
"@types/node": "^6.0.90",
"@types/react": "^15.6.6",
"@types/react-dom": "^0.14.23",
"immutable": "^3.8.1",
"most": "^1.2.2",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"shallow-equals": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"jest": "^20.0.0",
"jest-cli": "^20.0.0",
"most-proxy": "^3.3.0",
"ts-jest": "^19.0.1",
"ts-loader": "^2.3.7",
"typescript": "^2.6.1",
"webpack": "^2.4.5"
},
"peerDependencies": {
"@cycle/most-run": "^7.1.0"
},
"publishConfig": {
"access": "public"
}
}