-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 922 Bytes
/
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
{
"name": "@ineedthis/express",
"version": "0.2.2",
"description": "ineedthis service wrapper for the express HTTP server",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"test": "node ./test.js"
},
"keywords": [],
"files": [
"lib"
],
"author": "George Pittarelli <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gpittarelli/ineedthis-express.git"
},
"dependencies": {
"killable": "1.0.0"
},
"peerDependencies": {
"ineedthis": ">=0.0.1",
"express": ">=0.0.1"
},
"devDependencies": {
"@types/express": "4.17.1",
"@types/node": "12.7.8",
"@typescript-eslint/eslint-plugin": "2.3.1",
"@typescript-eslint/parser": "2.3.1",
"eslint": "6.5.0",
"express": "4.17.1",
"ineedthis": "0.0.25",
"prettier": "1.18.2",
"typescript": "3.6.3"
}
}