-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 996 Bytes
/
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
{
"name": "fs-observable",
"version": "4.1.11",
"description": "Observables for node fs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"nteractDesktop": "src/index.ts",
"scripts": {
"build": "tsc -b",
"test": "jest"
},
"repository": "https://github.com/nteract/nteract/tree/master/packages/fs-observable",
"keywords": [
"rxjs",
"fs",
"observable"
],
"author": "Kyle Kelley <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nteract/nteract/issues"
},
"homepage": "https://github.com/nteract/nteract/tree/master/packages/fs-observable",
"publishConfig": {
"access": "public"
},
"dependencies": {
"filewatcher": "^3.0.1",
"mkdirp": "^0.5.1",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/mkdirp": "^0.5.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"rxjs": "^6.3.3"
}
}