-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.27 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
82
83
84
85
86
87
{
"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 lib",
"test": "node-qunit-puppeteer http://localhost:8080/test 30000 \"--no-sandbox\"",
"semantic-release": "semantic-release pre && semantic-prerelease publish --public && semantic-release post"
},
"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": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-buble": "^0.21.1",
"@rollup/plugin-node-resolve": "^7.1.1",
"@telerik/semantic-prerelease": "^1.0.0",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^6.8.0",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"node-qunit-puppeteer": "^2.0.2",
"rollup": "^2.3.3",
"rollup-plugin-terser": "^5.3.0",
"semantic-release": "^6.3.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/telerik/jszip-esm.git"
},
"bugs": {
"url": "https://github.com/telerik/jszip-esm"
},
"release": {
"debug": false,
"branchTags": {
"develop": "dev"
},
"fallbackTags": {
"dev": "latest"
},
"analyzeCommits": "@telerik/semantic-prerelease/analyzeCommits",
"generateNotes": "@telerik/semantic-prerelease/generateNotes",
"getLastRelease": "@telerik/semantic-prerelease/getLastRelease",
"verifyConditions": "@telerik/semantic-prerelease/verifyConditions",
"verifyRelease": "@telerik/semantic-prerelease/verifyRelease"
},
"files": [
"dist",
"index.d.ts"
]
}