-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "@nowzoo/zu-fs",
"version": "0.0.1",
"description": "File system library.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "node prebuild && tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"homepage": "https://github.com/nowzoo/zu-fs#readme",
"bugs": "https://github.com/nowzoo/zu-fs/issues",
"license": "MIT",
"repository": "github:nowzoo/zu-fs",
"engines": {
"node": ">= 10.13 <11"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/jest": "^23.3.12",
"@types/mime": "^2.0.1",
"@types/node": "^10.12.18",
"jest": "~23.6.0",
"lodash": "^4.17.11",
"prettier": "1.15.3",
"rimraf": "^2.6.3",
"ts-jest": "~23.10.5",
"tslint": "~5.12.0",
"tslint-config-prettier": "1.17.0",
"tslint-microsoft-contrib": "~6.0.0",
"tsutils": "~3.7.0",
"typescript": "^3.2.2"
},
"author": "Christopher Carson <chris@nowzoo.com>",
"dependencies": {
"chokidar": "^2.1.2",
"fs-extra": "^7.0.1",
"mime": "^2.4.0",
"moment": "^2.24.0",
"rxjs": "^6.4.0"
}
}