-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.42 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
105
{
"name": "rimx",
"version": "3.8.3",
"description": "A state management tool for React, based on RxJS and ImmutableJS.",
"main": "dist/rimx.js",
"jsnext:main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"cover": "jest --coverage --coverageReporters=text-lcov | coveralls",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "[email protected]:tonypig93/rimx.git"
},
"keywords": [
"react",
"rxjs",
"immutable",
"state"
],
"author": "Tony Zhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/tonypig93/rimx/issues"
},
"homepage": "https://github.com/tonypig93/rimx#readme",
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"symbol-observable": "^1.2.0"
},
"peerDependencies": {
"immutable": "^3.8.0",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"rxjs": "^5.5.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/react": "^16.0.40",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-ie": "^6.7.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"immutable": "^3.8.2",
"jest": "^23.6.0",
"react": "^16.2.0",
"react-test-renderer": "^16.5.1",
"rimraf": "^2.6.2",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.16.1",
"rxjs": "5.5.11",
"through2": "^2.0.3",
"ts-jest": "^23.10.0-beta.6",
"ts-loader": "^4.1.0",
"typescript": "^2.7.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"babel": {
"presets": [
[
"latest",
{
"es2015": {
"modules": "umd"
}
}
],
"react"
]
},
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}