generated from tinovyatkin/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "zip-store-stream",
"description": "Creates a in-memory ZIP file with no compression, out of given files, streams or buffers",
"license": "MIT",
"author": "Konstantin Vyatkin <[email protected]>",
"homepage": "https://github.com/walletpass/zip-store-stream#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/walletpass/zip-store-stream.git"
},
"bugs": {
"url": "https://github.com/walletpass/zip-store-stream/issues"
},
"version": "1.1.6",
"main": "dist/index.js",
"files": [
"dist/*.d.ts",
"dist/*.js"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext=ts ./src",
"prepublishOnly": "jest && tsc",
"test": " node --trace-warnings --unhandled-rejections=none --expose-gc node_modules/jest-cli/bin/jest --detectOpenHandles --logHeapUsage"
},
"dependencies": {
"@node-rs/crc32": "1.2.1"
},
"devDependencies": {
"@types/jest": "latest",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "8.10.0",
"eslint-config-prettier": "latest",
"eslint-plugin-jest": "latest",
"husky": "latest",
"jest": "26.6.3",
"jest-circus": "26.6.3",
"jest-sonar": "0.2.12",
"lint-staged": "latest",
"npm-package-json-lint": "latest",
"prettier": "latest",
"prettier-package-json": "latest",
"ts-jest": "latest",
"typescript": "latest",
"weak-napi": "2.0.2"
},
"keywords": [
"compress",
"stream",
"typescript",
"zip"
],
"engines": {
"node": ">=10.10",
"yarn": ">=1.19"
}
}