-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 742 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 742 Bytes
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
{
"name": "easy-uploader.js",
"version": "2.0.1",
"main": "dist/uploader.umd.js",
"module": "dist/uploader.es.js",
"types": "dist/uploader.d.ts",
"author": "moshuchao <chaoshumo@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && rollup -c",
"prepublishOnly": "yarn run build"
},
"files": [
"dist"
],
"keywords": [
"html5",
"modern",
"upload",
"multiple",
"slice",
"file",
"javascript",
"typescript"
],
"devDependencies": {
"@types/spark-md5": "^3.0.2",
"rollup": "^1.27.8",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.7.3"
},
"peerDependencies": {
"spark-md5": "^3.0.1"
}
}