-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "multipart-upload-example",
"version": "0.1.0",
"description": "Multipart upload example",
"main": "index.js",
"scripts": {
"start": "node index.js",
"jsdoc:build": "./node_modules/.bin/jsdoc ./src/**/*.js",
"test": "./node_modules/.bin/mocha --ui bdd -c --check-leaks -R spec --timeout 5000 --exit './tests/index.js'",
"nodemon:test": "./node_modules/.bin/nodemon --watch src --watch tests --watch index.js --exec npm test",
"nodemon:start": "./node_modules/.bin/nodemon --watch src --watch index.js --exec npm start",
"lint": "./node_modules/.bin/eslint ./src/**/*.js ./tests/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demeter-macik/multipart-upload-example.git"
},
"keywords": [
"multipart",
"node",
"express",
"busboy",
"multer"
],
"author": "demeter",
"license": "ISC",
"bugs": {
"url": "https://github.com/demeter-macik/multipart-upload-example/issues"
},
"homepage": "https://github.com/demeter-macik/multipart-upload-example#readme",
"devDependencies": {
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"form-data": "^2.5.1",
"jsdoc": "^3.6.3",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"nodemon": "^1.19.2"
},
"dependencies": {
"ajv": "6.10.2",
"busboy": "0.3.1",
"express": "4.17.1",
"unzip-stream": "0.3.0",
"uuid": "3.3.3"
}
}