-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 929 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 929 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
34
35
36
{
"name": "rx-stream",
"author": "lostintime <lostintime.dev@gmail.com>",
"version": "0.2.0",
"license": "Apache-2.0",
"description": "Reactive streams with TypeScript, Monix scala library port",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"TypeScript",
"Reactive Streams",
"Monix"
],
"bugs": {
"url": "https://github.com/lostintime/node-rx-stream/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lostintime/node-rx-stream.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json",
"clean": "([ -e ./dist ] && rm -R ./dist) || true",
"build": "tsc"
},
"dependencies": {
"funfix": "^7.0.1"
},
"devDependencies": {
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.7.2"
}
}