-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "f-express",
"version": "3.0.0",
"license": "MIT",
"description": "express wrapper for f-promise",
"author": {
"name": "Bruno Jouhier",
"email": "bruno.jouhier@sage.com"
},
"main": "build/index.js",
"typings": "build/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@types/express": "^4.17.2",
"express": "^4.17.1",
"f-promise": "^2.0.8",
"methods": "^1.1.2"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.5",
"@types/supertest": "^2.0.8",
"mocha": "^6.2.2",
"supertest": "^4.0.2",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"keywords": [
"express",
"fibers",
"coroutine"
],
"repository": {
"type": "git",
"url": "git://github.com/Sage/f-express.git"
},
"scripts": {
"prepare": "tsc",
"test": "mocha build/test",
"lint": "tslint -e 'node_modules/**' -p ."
}
}