-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 1.79 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
70
71
72
73
74
75
{
"name": "spur-web",
"version": "3.0.4",
"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": "mocha ./test/unit/",
"test-integration": "mocha ./test/integration/",
"test": "npm run test-unit && npm run test-integration",
"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": "agustin@colchado.com"
},
"contributors": [
{
"name": "Danielle Blank",
"email": "dgdblank@gmail.com"
},
{
"name": "Siavash Etemadieh",
"email": "ssetem@googlemail.com"
},
{
"name": "Joseph McElroy",
"email": "phoey1@gmail.com"
}
],
"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.18.2",
"express-device": "^0.4.2",
"express-winston": "^2.6.0",
"lodash.assignin": "4.2.0",
"lodash.invokemap": "4.6.0",
"lodash.some": "4.6.0",
"method-override": "^3.0.0",
"spur-ioc": "^2.0.0",
"winston": "^3.9.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.42.0",
"eslint-plugin-node": "^11.1.0",
"colors": "^1.4.0",
"spur-common": "^3.0.2",
"spur-config": "^2.0.4",
"mocha": "^10.2.0",
"sinon": "^15.1.2"
}
}