-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@philhosoft/rx-node-fs",
"displayName": "RxNodeFS",
"version": "1.1.1",
"description": "Library to wrap Node.js' FS library (filesystem) in RxJS' Observables",
"author": "PhiLho",
"publisher": "PhiLhoSoft",
"repository": {
"type": "git",
"url": "https://github.com/PhiLhoSoft/RxNodeFS.git"
},
"bugs": {
"url": "https://github.com/PhiLhoSoft/RxNodeFS/issues"
},
"homepage": "https://PhiLhoSoft.github.io/",
"license": "Zlib",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "dist/lib/rx-node-fs.js",
"files": [
"/index.ts",
"/dist",
"/lib"
],
"type": "module",
"dependencies": {
"core-js": "^3.18.0",
"lodash": "^4.17.21",
"rxjs": "^7.3.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@philhosoft/ts-eslintrc": "^1.0.1",
"@types/core-js": "^2.5.5",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.174",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"jest": "~27.2.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"build:examples": "tsc -p examples/tsconfig.json",
"start:examples": "node test-dist/examples/CheckLocaleConsistency/check-consistency.js > test-dist/ExampleData.txt",
"build:test": "tsc -p test/tsconfig.json",
"start:test": "node test-dist/test/rx-node-fs-test.js",
"lint": "eslint .",
"test": "npm run lint"
}
}