-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 855 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 855 Bytes
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
{
"name": "middleware-tester",
"version": "0.7.0",
"description": "Test your middleware with fake requests",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/node": "^8.0.26",
"connect": "~2.14.2",
"flask-router-plus": "~0.2.7"
},
"scripts": {
"compile": "ntsc src/index.ts -m commonjs --outDir lib",
"test": "ntsc src/index.ts -m commonjs --outDir lib; node test/index.js"
},
"keywords": [
"test",
"middleware",
"fake",
"requests"
],
"author": "spion",
"license": "MIT",
"dependencies": {
"bl": "^2.1.2",
"blue-tape": "^0.1.6",
"bluebird": "^2.7.1",
"duplexer2": "0.0.1",
"querystring": "^0.2.0",
"stream-browserify": "~0.1.3",
"through2": "^0.4.1"
}
}