-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
111 lines (111 loc) · 2.38 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
106
107
108
109
110
111
{
"name": "xreact",
"version": "5.0.1",
"description": "Functional Reactive State Container for React",
"repository": {
"type": "git",
"url": "git+https://github.com/jcouyang/react-most.git"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"lib",
"dist"
],
"scripts": {
"build": "make all",
"test": "jest",
"prepublish": "npm run build",
"testWDebugger": "node --harmony $(which bugger) ./node_modules/jest-cli/bin/jest.js --runInBand"
},
"browserify-shim": {
"react": "global:React",
"@reactivex/rxjs": "global:Rx",
"most": "global:most"
},
"dependencies": {
"prop-types": "^15.6.0",
"reflect-metadata": "^0.1.12"
},
"peerDependencies": {
"react": "^16.2.0"
},
"optionalDependencies": {
"@reactivex/rxjs": "^5.5.6",
"most": "^1.7.2",
"most-subject": "^5.3.0"
},
"devDependencies": {
"@reactivex/rxjs": "^5.5.6",
"@types/jest": "^22.1.0",
"@types/node": "^9.3.0",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.34",
"browserify": "^15.2.0",
"browserify-shim": "^3.8.14",
"chai": "^4.1.2",
"create-react-class": "^15.6.2",
"envify": "^4.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.1.4",
"lodash": "^4.0.0",
"mocha": "^5.0.0",
"most": "^1.7.2",
"most-subject": "^5.3.0",
"nightmare": "^2.10.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"redux": "^3.0.4",
"ts-jest": "^22.0.1",
"tsify": "^3.0.4",
"typescript": "^2.7.1",
"uglify-js": "^3.3.8",
"watchify": "^3.9.0"
},
"jest": {
"transform": {
"^.+\\.(tsx|ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"collectCoverageFrom": [
"src/x.ts",
"src/xclass.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/__tests__/*.(ts|tsx|js)"
],
"roots": [
"src"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"author": "Jichao Ouyang",
"license": "MIT",
"keywords": [
"Rx",
"RxJS",
"ReactiveX",
"ReactiveExtensions",
"Streams",
"Observables",
"Observable",
"Stream",
"React",
"most",
"mostjs",
"FRP",
"Reactive",
"ES6",
"ES2015",
"xreact",
"typescript"
]
}