-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "observable-process",
"version": "8.0.0-pre4",
"description": "High-level support for running, observing, and interacting with child processes in Node.js",
"homepage": "https://github.com/Originate/observable-process",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Originate/observable-process.git"
},
"license": "ISC",
"author": "Kevin Goslar",
"main": "dist/index.js",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"prepublishOnly": "make build",
"test": "make spec"
},
"dependencies": {
"merge-stream": "2.0.0",
"string-argv": "0.3.1",
"text-stream-search": "4.0.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/got": "9.6.11",
"@types/merge-stream": "1.1.2",
"@types/mocha": "8.2.2",
"@types/node": "15.12.2",
"@types/string-argv": "0.3.0",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"coveralls": "3.1.0",
"eslint": "7.28.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-typescript-sort-keys": "1.6.0",
"got": "11.8.2",
"mocha": "9.0.0",
"nyc": "15.1.0",
"portfinder": "1.0.28",
"prettier": "2.3.1",
"sort-package-json": "1.57.0",
"source-map-support": "0.5.19",
"ts-node": "10.0.0",
"typescript": "4.3.2"
},
"engines": {
"yarn": ">= 1.5.0"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
}
}