-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
79 lines (79 loc) · 1.83 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
{
"name": "gcs-browser-upload",
"version": "2.0.0",
"description": "Resumable, chunked uploads to Google Cloud Storage from the browser",
"main": "dist/Upload.js",
"types": "types.d.ts",
"scripts": {
"test": "make test",
"compile": "make compile",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qubitdigital/gcs-browser-upload.git"
},
"author": "Qubit",
"license": "MIT",
"bugs": {
"url": "https://github.com/qubitdigital/gcs-browser-upload/issues"
},
"homepage": "https://github.com/qubitdigital/gcs-browser-upload#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-subset": "^1.2.2",
"colors": "^1.1.2",
"eslint": "^2.5.3",
"eslint-plugin-babel": "^3.1.0",
"express": "^4.13.4",
"filereader": "oliverwoodings/FileReader",
"get-port": "^2.1.0",
"localStorage": "^1.0.3",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"pify": "^2.3.0",
"random-string": "^0.1.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"standard": "^6.0.8"
},
"dependencies": {
"axios": "^0.9.1",
"debug": "^2.2.0",
"es6-error": "^2.1.0",
"es6-promise": "^3.1.2",
"spark-md5": "^2.0.2"
},
"files": [
"dist",
"README.md",
"types.d.ts"
],
"standard": {
"parser": "babel-eslint",
"global": [
"describe",
"it",
"beforeEach",
"afterEach",
"before",
"after",
"FileReader"
],
"plugins": [
"babel"
],
"rules": {
"arrow-parens": 0,
"babel/arrow-parens": 1
}
}
}