-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 1.8 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@papb/zip",
"version": "3.0.0",
"description": "Zipping & unzipping, simplified.",
"license": "MIT",
"repository": "papb/zip",
"author": {
"name": "Pedro Augusto de Paula Barbosa",
"email": "[email protected]"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"release": "npm run build && np --no-2fa --no-cleanup",
"lint": "tsc --noEmit && xo",
"ava": "npm run build && ava",
"test": "npm run lint && npm run ava"
},
"main": "dist/source",
"types": "dist/source",
"files": [
"dist/source",
"!*.map",
"!*.test.*"
],
"keywords": [
"zip",
"unzip",
"extract",
"archive",
"archiver",
"compress",
"compression",
"file",
"folder",
"directory",
"filesystem",
"typescript"
],
"dependencies": {
"extract-zip": "1.7.0",
"fs-jetpack": "^3.1.0",
"p-map": "^4.0.0",
"tory": "^0.4.4",
"yazl": "^2.5.1"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/extract-zip": "^1.6.2",
"@types/node": "^10.17.28",
"@types/yazl": "^2.4.2",
"ava": "^3.11.0",
"del-cli": "^3.0.1",
"np": "^6.4.0",
"source-map-support": "^0.5.19",
"tempy": "^0.6.0",
"typescript": "~3.9.7",
"xo": "^0.33.0"
},
"publishConfig": {
"access": "public"
},
"ava": {
"verbose": true,
"require": [
"source-map-support/register"
],
"typescript": {
"rewritePaths": {
"source/": "dist/source/",
"test/": "dist/test/"
}
},
"timeout": "1m"
},
"xo": {
"rules": {
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"@typescript-eslint/class-literal-property-style": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/no-for-loop": "off",
"linebreak-style": [
"error",
"unix"
],
"object-curly-spacing": [
"error",
"always"
]
}
}
}