-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 1.64 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fs-nextra",
"version": "0.5.1",
"description": "Node.js fs next-gen extra (nextra) methods.",
"main": "dist/src/index.js",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"test": "ava --timeout=20s",
"test:lint": "eslint --ext ts src test",
"test:coverage": "npx nyc check-coverage --lines 90 --functions 90 --branches 90",
"coverage": "npx nyc --require source-map-support/register npm test",
"coverage:report": "npx nyc report --reporter=html",
"docs": "typedoc --exclude ./src/utils/**/*.ts --out ./dist/ ./src/",
"lint": "eslint --fix --ext ts src test"
},
"keywords": [
"atomics",
"compression",
"copy",
"delete",
"directory",
"file",
"file system",
"fs",
"gz",
"gzip",
"json",
"move",
"native",
"nextra",
"promise",
"read",
"tar",
"write"
],
"author": "BDISTIN",
"license": "MIT",
"engines": {
"node": ">=12.12.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"ava": "^3.15.0",
"eslint": "^6.8.0",
"eslint-config-klasa": "dirigeants/klasa-lint",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/bdistin/fs-nextra"
},
"ava": {
"files": [
"test/**/*.ts",
"!test/lib"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"test/": "dist/test/"
}
}
}
}