-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 839 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 839 Bytes
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
{
"name": "@shortercode/webzip",
"version": "1.1.1",
"description": "A modern TypeScript library for creating, reading and editing ZIP archives in a client side environment.",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"scripts": {
"test": "jest --verbose --coverage",
"typecheck": "tsc --noEmit --watch",
"build": "rollup -c && cp ./README.md ./dist/README.md",
"lint": "eslint src/*"
},
"author": "Iain Shorter <iainshorter@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"rollup": "^3.20.5",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {}
}