-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"name": "@intothesource/express-csv-redirect-middleware",
"version": "1.3.0",
"description": "ExpressJS Middleware that handles redirects from a CSV file",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"lib/error/missing-csv.error.js",
"lib/error/unsupported-input.error.js",
"lib/get-csv.js",
"lib/split-columns.js",
"lib/split-rows.js",
"lib/status-code-from-string.js",
"lib/with-original-as-key.js",
"lib/with-parsed-status-code.js"
],
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intothesource/express-csv-redirect-middleware.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/intothesource/express-csv-redirect-middleware/issues"
},
"homepage": "https://github.com/intothesource/express-csv-redirect-middleware#readme",
"devDependencies": {
"@types/express": "^4.17.1",
"ava": "^2.4.0",
"express": "^4.17.1",
"supertest": "^4.0.2",
"tsd": "^0.8.0",
"xo": "^0.24.0"
},
"dependencies": {}
}