-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 810 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 810 Bytes
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
{
"name": "ractor-observable",
"version": "0.0.3",
"description": "Rxjs middleware for Ractor",
"main": "dist/index.js",
"scripts": {
"build": "rm -fr dist && tsc",
"build_test": "rm -fr _test && tsc -p test/",
"clean_test": "rm -fr _test",
"test_ava": "ava _test/test/",
"test": "npm-run-all build_test test_ava clean_test",
"prepare": "npm run build"
},
"author": "huangbinjie",
"license": "MIT",
"dependencies": {
"ractor": "^1.1.0",
"ractor-react": "^1.0.13",
"rxjs": "^6.2.2"
},
"peerDependencies": {
"js-actor": "^1.1.11",
"ractor": "^1.1.0"
},
"devDependencies": {
"ava": "^0.25.0",
"npm-run-all": "^4.1.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"typescript": "^2.9.2"
},
"typings": "dist/index.d.ts"
}