forked from QubitProducts/gcs-browser-upload
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.49 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
87
88
89
90
91
{
"name": "@cognite/gcs-browser-upload",
"version": "1.1.1",
"description": "Resumable, chunked uploads to Google Cloud Storage from the browser",
"main": "dist/Upload.js",
"scripts": {
"test": "NODE_ENV=test mocha --require ./test/setup.js --exit test/ --unhandled-rejections=strict",
"compile": "NODE_ENV=production npx babel src --out-dir dist --copy-files",
"build": "yarn compile",
"prepublish": "npm run compile",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "https://github.com/cognitedata/gcs-browser-upload"
},
"author": "Qubit",
"license": "MIT",
"bugs": {
"url": "https://github.com/qubitdigital/gcs-browser-upload/issues"
},
"homepage": "https://github.com/qubitdigital/gcs-browser-upload#readme",
"dependencies": {
"axios": "^0.21.2",
"es6-error": "^4.1.1",
"es6-promise": "^4.2.8",
"spark-md5": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/polyfill": "^7.12.1",
"@babel/register": "^7.13.16",
"@cognite/eslint-config": "1.4.2",
"babel-eslint": "^10.1.0",
"body-parser": "^1.15.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.2.2",
"colors": "^1.1.2",
"debug": "^4.1.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": ">=18.0",
"eslint-config-prettier": ">=6",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": ">=2.18",
"eslint-plugin-jest": ">=22.19",
"eslint-plugin-jsx-a11y": ">=6.2",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-prettier": ">=3.1",
"eslint-plugin-react": ">=7.16",
"eslint-plugin-react-hooks": ">=1.7",
"express": "^4.13.4",
"filereader": "oliverwoodings/FileReader",
"get-port": "^5.0.0",
"localStorage": "^1.0.3",
"mkdirp": "^1.0.4",
"mocha": "^8.3.2",
"prettier": ">=1.18",
"random-string": "^0.2.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.3.0",
"standard": "^14.3.1"
},
"files": [
"dist",
"README.md"
],
"standard": {
"parser": "babel-eslint",
"global": [
"describe",
"it",
"beforeEach",
"afterEach",
"before",
"after",
"FileReader"
],
"plugins": [
"babel"
],
"rules": {
"arrow-parens": 0,
"babel/arrow-parens": 1
}
}
}