-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
107 lines (107 loc) · 3.01 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@transcend-io/conflux",
"version": "4.1.2",
"description": "Build zip files out of readable streams in the browser",
"main": "dist/conflux.umd.min.js",
"jsdelivr": "dist/conflux.umd.min.js",
"unpkg": "dist/conflux.umd.min.js",
"browser": "dist/conflux.esm.js",
"module": "dist/conflux.esm.js",
"scripts": {
"####### Linting #######": "",
"lint": "yarn pnpify eslint src --ext .js",
"####### Test #######": "",
"test:local": "karma start karma.local.js",
"test:local:debug": "karma start karma.local.js --log-level debug",
"test:browserstack": "karma start karma.browserstack.js",
"report-coverage": "codecov",
"rebuild-fixtures": "node test/build.js",
"####### Build #######": "",
"build": "rollup -c --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcend-io/conflux.git"
},
"keywords": [
"zip",
"browser",
"streams",
"readable",
"files",
"whatwg"
],
"contributors": [
{
"name": "Jimmy Wärting",
"email": "[email protected]",
"url": "https://github.com/jimmywarting"
},
{
"name": "Eli Grey",
"email": "[email protected]",
"url": "https://github.com/eligrey"
},
{
"name": "Ben Brook",
"email": "[email protected]",
"url": "https://github.com/bencmbrook"
}
],
"files": [
"dist/**/*",
"src/**/*"
],
"license": "MIT",
"author": "@transcend-io",
"bugs": {
"url": "https://github.com/transcend-io/conflux/issues"
},
"homepage": "https://github.com/transcend-io/conflux#readme",
"resolutions": {
"node-fetch": "2.6.7",
"path-parse": "1.0.7",
"glob-parent": "5.1.2"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-classes": "^7.23.5",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@yarnpkg/pnpify": "^4.1.3",
"@yarnpkg/sdks": "^3.2.0",
"buffer": "^6.0.3",
"codecov": "^3.8.3",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "2.29.0",
"git-rev-sync": "^3.0.2",
"karma": "^6.4.4",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-rollup-preprocessor": "^7.0.8",
"karma-tap": "^4.2.0",
"live-server": "^1.2.2",
"prettier": "^3.1.0",
"rollup": "^4.22.4",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"tape": "^5.7.2"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.23.5",
"jsbi": "^4.3.0",
"pako": "^2.1.0",
"web-streams-polyfill": "^3.2.1"
},
"packageManager": "[email protected]"
}