-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 998 Bytes
/
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
{
"name": "@gitcobra/anzip",
"version": "1.0.8",
"description": "super easy way to create an uncompressed zip file.",
"main": "dist/anzip.umd.js",
"browser": "dist/anzip.esm.js",
"files": [
"dist/**/*.js",
"types/**/*.d.ts"
],
"types": "types/anzip.d.ts",
"directories": {},
"devDependencies": {
"rollup": "^2.72.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.3"
},
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c && tsc ./src/anzip.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"test": "node ./test/test_node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitcobra/AnZip.js.git"
},
"author": "gitcobra",
"license": "ISC",
"bugs": {
"url": "https://github.com/gitcobra/AnZip.js/issues"
},
"homepage": "https://github.com/gitcobra/AnZip.js#readme",
"keywords": [
"zip",
"uncompressed",
"browser",
"es3",
"wsh",
"hta"
]
}