-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "huge-uploader",
"version": "1.1.0",
"description": "Module to handle huge file uploads by chunking them in the browser. Resumable, fault tolerent, offline aware, mobile ready.",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"src",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/Buzut/huge-uploader.git"
},
"keywords": [
"upload",
"file upload",
"huge file upload",
"big file upload",
"resumable upload",
"pausable upload",
"chunked upload",
"fault tolerent",
"file api"
],
"author": "Buzut (buzut.net)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Buzut/huge-uploader/issues"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"rollup": "^0.60.2"
},
"dependencies": {
"event-target-shim": "^3.0.1"
},
"scripts": {
"prepare": "test -d .git && cd .git/hooks/ && curl -O https://raw.githubusercontent.com/Buzut/git-emojis-hook/master/commit-msg && curl -O https://raw.githubusercontent.com/Buzut/git-emojis-hook/master/prepare-commit-msg && chmod +x * || exit 0",
"build": "rollup -c",
"prepublishOnly": "npm run build"
}
}