-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "slay",
"version": "4.1.0",
"description": "Rock-solid structured application layout for building APIs and web apps in Node.js",
"homepage": "https://github.com/godaddy/slay#readme",
"bugs": {
"url": "https://github.com/godaddy/slay/issues"
},
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"async": "^3.2.5",
"broadway": "^4.1.0",
"diagnostics": "^2.0.2",
"express": "^4.19.2",
"lodash.merge": "^4.6.2",
"nconf": "^0.12.1",
"understudy": "^4.1.0",
"winston": "^3.13.0"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^8.11.0",
"eslint-config-godaddy": "^7.1.1",
"mocha": "^10.6.0",
"sinon": "^18.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint ./lib ./test",
"fix": "npm run lint -- --fix",
"posttest": "npm run lint",
"test": "mocha ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "git@github.com/godaddy/slay.git"
},
"author": "GoDaddy.com Operating Company, LLC",
"contributors": [
"Charlie Robbins <crobbins@godaddy.com>",
"Fady Matar <fmatar@godaddy.com>"
],
"license": "MIT"
}