-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "@trigo/atrix-swagger",
"version": "3.0.0-alpha2",
"engines": {
"node": ">=18.0.0"
},
"config": {
"loadOnStart": true
},
"description": "Swagger API Language intigration ",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --timeout 30000 $(find . -name '*.specs.js' -not -path './node_modules/*')",
"lint": "eslint lib specs",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"precommit": "lint-staged",
"prettify": "prettier --write '**/*.{js,jsx}'"
},
"keywords": [
"atrix",
"swagger"
],
"lint-staged": {
"*.{js,jsx}": [
"prettier",
"git add"
]
},
"author": "Christian Hubinger <christian@trigo.at>",
"license": "ISC",
"dependencies": {
"@joi/date": "^2.1.0",
"joi": "^17.9.1",
"ramda": "^0.29.0",
"swagger-parser": "10.0.3"
},
"devDependencies": {
"@trigo/atrix": "^7.0.0-alpha3",
"chai": "^4.3.7",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-trigo": "^6.2.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^8.1.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prettier": "^1.15.3",
"supertest": "^3.0.0",
"uuid": "^3.1.0"
}
}