forked from basisai/remote-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
{
"name": "@gyng/remote-zip",
"version": "0.2.5",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"author": "AIcadium, Ng Guoyou <[email protected]>",
"license": "MIT",
"files": [
"LICENSE",
"package.json",
"lib/**"
],
"repository": {
"type": "git",
"url": "git://github.com/gyng/remote-zip.git"
},
"scripts": {
"build": "rm -rf lib/* && yarn ts-types && node ./esbuild.mjs",
"d:server": "http-server fixtures",
"d": "WATCH=1 yarn build",
"doc:gen": "yarn typedoc src/index.ts --excludePrivate --cleanOutputDir --logLevel Verbose --out ./docs/api",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint . --ext .js --ext .jsx --ext .ts --ext .tsx",
"lint:fix": "yarn lint:prettier:fix && yarn lint:eslint:fix",
"lint:prettier:fix": "prettier --write .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:prettier && yarn lint:eslint",
"t:watch": "yarn test --watch",
"t": "yarn test",
"test:coverage": "yarn test --coverage",
"test": "jest",
"ts-types": " tsc --emitDeclarationOnly --outDir lib/types"
},
"devDependencies": {
"@types/http-server": "^0.12.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/pako": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"esbuild": "^0.18.7",
"esbuild-jest": "^0.5.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"dependencies": {
"cross-fetch": "^3.1.6",
"pako": "^2.1.0"
}
}