-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 777 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 777 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
{
"name": "ndjson-rxjs",
"version": "1.0.0",
"description": "Newline-delimited JSON parser (and XMLHttpRequest interface) that submits decoded objects to an Observable.",
"main": "distrib.js",
"scripts": {
"build": "babel index.js --out-file distrib.js",
"test": "tape -r babel-register tests.js",
"prepublish": "npm run build"
},
"author": "Julian Hall <jh314159@googlemail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jh3141/ndjson-rxjs"
},
"dependencies": {
"rxjs": "^5.4.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"tape": "^4.8.0",
"tape-watch": "^2.3.0"
}
}