-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@progress/jszip-esm",
"description": "JSZip fork with bundler-friendly packaging",
"author": "Progress",
"license": "SEE LICENSE IN LICENSE.md",
"version": "0.0.0-semantically-released",
"main": "./dist/jszip.js",
"module": "./dist/jszip-esm5.js",
"es2015": "./dist/jszip-esm2015.js",
"types": "./index.d.ts",
"jsdelivr": "./dist/jszip.min.js",
"unpkg": "./dist/jszip.min.js",
"sideEffects": false,
"scripts": {
"build-package": "rollup -c",
"lint": "eslint",
"test": "node-qunit-puppeteer http://localhost:8080/test 30000 \"--no-sandbox\"",
"prepare": "husky"
},
"keywords": [
"Kendo UI",
"JSZip",
"Module"
],
"contributors": [
{
"name": "Franz Buchinger"
},
{
"name": "António Afonso"
},
{
"name": "David Duponchel"
},
{
"name": "yiminghe"
}
],
"dependencies": {
"@progress/pako-esm": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jszip": "^3.10.1",
"node-qunit-puppeteer": "^2.0.2",
"rollup": "^4.29.1",
"semantic-release": "^24.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/telerik/jszip-esm.git"
},
"bugs": {
"url": "https://github.com/telerik/jszip-esm"
},
"release": {
"branches": [{
"name": "master",
"channel": "latest"
}, {
"name": "develop",
"prerelease": true,
"channel": "dev"
}]
},
"publishConfig": {
"provenance": true
},
"files": [
"dist",
"index.d.ts"
]
}