forked from sunny-g/cycle-redux-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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
{
"name": "@sunny-g/cycle-redux-driver",
"version": "0.1.17",
"description": "(un)official Redux Action and State driver for Cycle.js",
"author": "Sunny G <[email protected]> (http://blog.sunnyg.io)",
"homepage": "https://github.com/sunny-g/cycle-redux-driver",
"repository": "https://github.com/sunny-g/cycle-redux-driver",
"bugs": "https://github.com/sunny-g/cycle-redux-driver/issues",
"license": "ISC",
"main": "commonjs/cycle-redux-driver.js",
"module": "es2015/index.js",
"types": "es2015/index.d.ts",
"files": [
"commonjs",
"es2015",
"src"
],
"keywords": [
"cycle",
"redux",
"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 run 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": "*",
"flux-standard-action": "^1.2.0",
"redux": "^3.6.0",
"xstream": "^10.4.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": "^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"
},
"publishConfig": {
"access": "public"
}
}