-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.21 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
92
93
94
95
96
97
98
99
{
"ava": {
"babel": {
"compileAsTests": [
"test/helpers/**/*"
]
},
"files": [
"test/express-tus/**/*"
],
"require": [
"@babel/register"
]
},
"dependencies": {
"body-parser": "^1.19.0",
"delay": "^4.3.0",
"es6-error": "^4.1.1",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"is-base64": "^1.1.0",
"roarr": "^2.15.3",
"serialize-error": "^6.0.0",
"tmp": "^0.2.1",
"uuid": "^8.0.0",
"yargs": "^15.3.1"
},
"description": "Express middleware for tus protocol.",
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-flow-strip-types": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"ava": "^3.8.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-export-default-name": "^2.0.4",
"clone-buffer": "^1.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.0.0",
"eslint-config-canonical": "^19.0.4",
"flow-bin": "^0.124.0",
"flow-copy-source": "^2.0.9",
"got": "^11.1.3",
"http-terminator": "^2.0.3",
"husky": "^4.2.5",
"nyc": "^15.0.1",
"semantic-release": "^17.0.7",
"sinon": "^9.0.2"
},
"engines": {
"node": ">=14"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"keywords": [
"tus",
"file",
"upload",
"resumable"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "express-tus",
"nyc": {
"all": true,
"exclude": [
"src/bin/**/*"
],
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"html",
"text-summary"
],
"require": [
"@babel/register"
],
"silent": true,
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/express-tus"
},
"scripts": {
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && flow-copy-source src dist",
"lint": "eslint --fix ./src && flow",
"test": "NODE_ENV=test ava --verbose --serial"
},
"version": "0.0.0-dev"
}