-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.56 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
{
"name": "bravado-server",
"version": "1.4.0",
"description": "Server for the Bravado REST API framework",
"directories": {
"lib": "lib"
},
"type": "module",
"scripts": {
"reinstall": "rm -rf node_modules && yarn install",
"lint": "esw . --ext .js",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"lint:changed": "lint-staged",
"test": "mocha test/index-spec.js --timeout 15000"
},
"engines": {
"node": ">=18"
},
"main": "lib/index.js",
"author": "Losant <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Losant/bravado-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Losant/bravado-server.git"
},
"keywords": [
"rest",
"restful",
"server",
"api",
"bravado"
],
"lint-staged": {
"*.js": "esw"
},
"dependencies": {
"bravado-core": "^0.15.0",
"bunyan": "^1.8.15",
"commander": "^12.1.0",
"convict": "^6.2.3",
"debug": "^4.3.6",
"dotenv": "^16.4.5",
"omnibelt": "^4.0.0",
"restify": "^11.1.0"
},
"devDependencies": {
"@losant/eslint-config-losant": "^1.6.1",
"bravado-client-generator": "Losant/bravado-client-generator#master",
"es6-promise": "^4.2.8",
"eventsource": "^2.0.2",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.9",
"mocha": "^10.7.3",
"nock": "^13.5.5",
"should": "^13.2.3"
},
"eslintConfig": {
"extends": "@losant/eslint-config-losant/env/esm"
},
"eslintIgnore": [
"test/testClient"
]
}