forked from muxinc/upchunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@mux/upchunk",
"version": "2.3.0",
"description": "Dead simple chunked file uploads using Fetch",
"main": "dist/upchunk.js",
"repository": "https://github.com/muxinc/upchunk",
"author": "Matthew McClure <[email protected]>",
"license": "MIT",
"keywords": [
"browser upload",
"chunked upload",
"file upload",
"gcs upload",
"google cloud storage upload",
"large file upload",
"resumable",
"upload"
],
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rm -rf ./dist",
"test": "jest",
"lint": "tslint --project .",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "yarn clean && yarn lint && yarn test && webpack --config webpack.prod.js && yarn pack"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"jest": "^26.6.3",
"nock": "^13.0.5",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"event-target-shim": "^6.0.2",
"xhr": "^2.6.0"
},
"volta": {
"node": "10.21.0"
}
}