-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "spawn-rx",
"version": "5.1.0",
"description": "An Rx-version of child_process.spawn",
"scripts": {
"doc": "echo \"esdoc may not work correctly\" && esdoc -c ./esdoc.json",
"compile": "tsc -p ./tsconfig.json",
"prepublishOnly": "npm run build",
"lint": "npx eslint .",
"test": "mocha --compilers ts:ts-node/register ./test/*",
"build": "npm-run-all compile test"
},
"repository": {
"type": "git",
"url": "https://github.com/anaisbetts/spawn-rx"
},
"keywords": [
"spawn",
"rx"
],
"author": "Anaïs Betts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anaisbetts/spawn-rx/issues"
},
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"homepage": "https://github.com/anaisbetts/spawn-rx",
"dependencies": {
"debug": "^4.3.7",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/debug": "^4.1.12",
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.66",
"babel-register": "^6.23.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"esdoc": "^1.1.0",
"esdoc-es7-plugin": "0.0.3",
"esdoc-plugin-async-to-sync": "^0.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"marked": "^0.5.0",
"mocha": "^4.0.0",
"npm-run-all": "^4.0.2",
"prettier": "^3.3.3",
"ts-node": "^3.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"uuid": "3.0.1"
}
}