-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.57 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
{
"name": "spur-web",
"version": "4.0.0",
"description": "Common node modules and express middleware that are designed to be the boilerplate of a node web app.",
"main": "./src/injector",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test-unit": "jest ./test/unit/",
"test-integration": "jest ./test/integration/",
"test": "jest",
"start": "node example/start.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/opentable/spur-web.git"
},
"keywords": [
"spur",
"spur-framework",
"node",
"web",
"common",
"library"
],
"author": {
"name": "Agustin Colchado",
"email": "[email protected]"
},
"contributors": [
{
"name": "Danielle Blank",
"email": "[email protected]"
},
{
"name": "Siavash Etemadieh",
"email": "[email protected]"
},
{
"name": "Joseph McElroy",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/opentable/spur-web/issues"
},
"homepage": "https://github.com/opentable/spur-web",
"dependencies": {
"body-parser": "1.20.2",
"cookie-parser": "1.4.6",
"express": "4.19.2",
"express-device": "0.4.2",
"express-winston": "2.6.0",
"method-override": "3.0.0",
"spur-ioc": "2.0.0",
"winston": "3.9.0"
},
"devDependencies": {
"@types/jest": "29.5.12",
"eslint": "8.42.0",
"jest": "29.7.0",
"spur-common": "4.0.0",
"spur-config": "2.0.4"
}
}