-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 912 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 912 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
28
{
"name": "armarius",
"version": "2.6.0",
"description": "A JavaScript library to read, write, and merge ZIP archives in web browsers.",
"repository": "github:aternosorg/armarius",
"type": "module",
"main": "index.js",
"browser": "index-browser.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --rootDir test --testTimeout 120000",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --rootDir test --coverage --testTimeout 120000",
"lint": "eslint src/**"
},
"keywords": [],
"author": "Kurt Thiemann <kurt@aternos.org>",
"license": "MIT",
"dependencies": {
"armarius-io": "^1.5.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsdoc": "^39.3.3",
"jest": "^28.1.1"
}
}