UNPKG

1.49 kBJSONView Raw
1{
2 "name": "spawn-rx",
3 "version": "3.0.0",
4 "description": "An Rx-version of child_process.spawn",
5 "scripts": {
6 "doc": "echo \"esdoc may not work correctly\" && esdoc -c ./esdoc.json",
7 "compile": "tsc",
8 "prepublish": "npm run compile",
9 "lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"",
10 "test": "mocha --compilers ts:ts-node/register ./test/*",
11 "build": "npm-run-all compile lint test"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/paulcbetts/spawn-rx"
16 },
17 "keywords": [
18 "spawn",
19 "rx"
20 ],
21 "author": "Paul Betts <paul@paulbetts.org>",
22 "license": "MIT",
23 "bugs": {
24 "url": "https://github.com/paulcbetts/spawn-rx/issues"
25 },
26 "main": "lib/src/index.js",
27 "typings": "lib/src/index.d.ts",
28 "homepage": "https://github.com/paulcbetts/spawn-rx",
29 "dependencies": {
30 "debug": "^2.5.1",
31 "lodash.assign": "^4.2.0",
32 "rxjs": "^6.3.1"
33 },
34 "devDependencies": {
35 "@types/chai": "^4.0.4",
36 "@types/chai-as-promised": "^7.1.0",
37 "@types/mocha": "^2.2.39",
38 "@types/node": "^8.0.32",
39 "babel-register": "^6.23.0",
40 "chai": "^4.1.2",
41 "chai-as-promised": "^7.1.1",
42 "esdoc": "^1.1.0",
43 "esdoc-es7-plugin": "0.0.3",
44 "esdoc-plugin-async-to-sync": "^0.5.0",
45 "marked": "^0.5.0",
46 "mocha": "^4.0.0",
47 "npm-run-all": "^4.0.2",
48 "ts-node": "^3.3.0",
49 "tslint": "^5.7.0",
50 "tslint-no-unused-expression-chai": "^0.1.3",
51 "typescript": "^2.5.3",
52 "uuid": "3.0.1"
53 }
54}