-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "rxjs.node",
"version": "0.2.0",
"description": "Tooling to adapt Node.js core functionality into RxJS",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"lint": "aegir-lint",
"build": "aegir-build",
"test": "aegir-test",
"test:node": "aegir-test --env node",
"test:browser": "aegir-test --env browser",
"release": "aegir-release",
"release-minor": "aegir-release --type minor",
"release-major": "aegir-release --type major",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dignifiedquire/rxjs.node.git"
},
"keywords": [
"rx",
"frp",
"rxjs",
"node",
"node.js",
"stream",
"streams"
],
"author": "Friedel Ziegelmayer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dignifiedquire/rxjs.node/issues"
},
"homepage": "https://github.com/dignifiedquire/rxjs.node#readme",
"devDependencies": {
"aegir": "^4.0.0",
"chai": "^3.5.0"
},
"dependencies": {
"rxjs": "^5.0.0-beta.10"
},
"contributors": [
"dignifiedquire <[email protected]>"
]
}