forked from tus/tus-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.75 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
{
"name": "tus-js-client",
"version": "1.8.0-1",
"description": "A pure JavaScript client for the tus resumable upload protocol",
"main": "lib.es5/index.js",
"jsnext:main": "lib/index.js",
"files": [
"lib/**/*",
"lib.es5/**/*",
"dist/**/*",
"demos/**/*",
"bin/**/*",
"test/**/*"
],
"browser": {
"./lib/node/request.js": "./lib/browser/request.js",
"./lib/node/base64.js": "./lib/browser/base64.js",
"./lib/node/storage.js": "./lib/browser/storage.js",
"./lib/node/source.js": "./lib/browser/source.js",
"./lib/node/fingerprint.js": "./lib/browser/fingerprint.js",
"./lib.es5/node/request.js": "./lib.es5/browser/request.js",
"./lib.es5/node/storage.js": "./lib.es5/browser/storage.js",
"./lib.es5/node/source.js": "./lib.es5/browser/source.js",
"./lib.es5/node/fingerprint.js": "./lib.es5/browser/fingerprint.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tus/tus-js-client.git"
},
"keywords": [
"tus",
"resumable",
"upload",
"protocol",
"progress",
"file",
"browser"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tus/tus-js-client/issues"
},
"homepage": "https://github.com/tus/tus-js-client",
"devDependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^12.0.0",
"browserstack": "^1.5.2",
"browserstack-runner": "^0.9.0",
"derequire": "^2.0.6",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.11.1",
"exorcist": "^0.4.0",
"jasmine": "^2.5.2",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "^2.4.1",
"phantomjs-prebuilt": "^2.1.16",
"synchronous-promise": "^2.0.5",
"temp": "^0.8.3",
"uglify-js": "^2.6.0",
"watchify": "^3.11.1"
},
"dependencies": {
"buffer-from": "^0.1.1",
"combine-errors": "^3.0.3",
"extend": "^3.0.0",
"js-base64": "^2.4.9",
"lodash.throttle": "^4.1.1",
"proper-lockfile": "^2.0.1",
"url-parse": "^1.4.3"
},
"scripts": {
"build": "mkdir -p dist && browserify lib/index.js -t [ babelify ] -s tus -d | exorcist ./dist/tus.js.map | derequire > dist/tus.js",
"watch": "watchify lib/index.js -t babelify -o dist/tus.js -s tus -v -d",
"test": "./bin/test",
"phantom-test": "phantomjs --local-to-remote-url-access=yes bin/phantom-jasmine.js",
"browserstack-test": "node bin/browserstack-jasmine.js",
"node-test": "cd test; jasmine",
"minify": "uglifyjs ./dist/tus.js -o ./dist/tus.min.js --in-source-map ./dist/tus.js.map --source-map ./dist/tus.min.js.map --source-map-url tus.min.js.map",
"dist": "npm run build && npm run minify",
"lint": "eslint lib demos test bin",
"transpile": "babel -d lib.es5/ lib/"
}
}