forked from 23/resumable.js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 KB
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
{
"name": "@pointcloudtechnology/resumablejs",
"version": "7.0.1",
"description": "A JavaScript library for providing multiple simultaneous, stable, fault-tolerant and resumable/restartable uploads via the HTML5 File API.",
"main": "dist/main.js",
"private": false,
"types": "./dist/resumable.d.ts",
"scripts": {
"build": "webpack",
"production": "webpack --mode production"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pointcloudtechnology/resumable.js.git"
},
"keywords": [
"html5",
"file",
"upload"
],
"author": "https://github.com/pointcloudtechnology/resumable.js/graphs/contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/pointcloudtechnology/resumable.js/issues"
},
"homepage": "https://github.com/pointcloudtechnology/resumable.js#readme",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.6",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2"
},
"publishConfig": {
"access": "public"
}
}