-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 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
59
60
61
62
{
"name": "@supercharge/fs",
"description": "Async filesystem methods for Node.js",
"version": "3.4.2",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/fs/issues"
},
"dependencies": {
"@supercharge/goodies": "~1.10.1",
"@types/fs-extra": "~9.0.13",
"@types/proper-lockfile": "~4.1.2",
"@types/recursive-readdir": "~2.2.1",
"fs-extra": "~10.1.0",
"proper-lockfile": "~4.1.2",
"recursive-readdir": "~2.2.2"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~2.0.0",
"@supercharge/tsconfig": "~3.1.0",
"c8": "~7.11.3",
"eslint": "~8.15.0",
"expect": "~28.1.0",
"typescript": "~4.6.4",
"uvu": "~0.5.3"
},
"engines": {
"node": ">=12"
},
"files": [
"dist",
"types"
],
"main": "dist",
"types": "dist",
"homepage": "https://github.com/supercharge/fs",
"keywords": [
"nodejs",
"filesystem",
"utilities",
"supercharge",
"superchargejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/fs.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"watch": "npm run dev",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "c8 --include=dist uvu",
"posttest": "c8 report --reporter=html"
}
}