-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.14 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
76
77
78
79
80
81
82
83
84
{
"name": "oaat",
"version": "1.4.2",
"description": "Open API AWS Tool with support for deploying an API to AWS API Gateway",
"repository": {
"type": "git",
"url": "https://github.com/digio/oaat.git"
},
"bin": {
"oaat": "./src/cli.js"
},
"keywords": [
"oas",
"openapi",
"mock",
"api",
"oat"
],
"author": "Brett Uglow",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint --max-warnings=0 --fix src/",
"verify": "eslint --max-warnings=0 src/",
"test": "npm-run-all test:report",
"test:unit": "jest --no-colors",
"test:report": "jest --no-colors --no-cache --coverage --json --outputFile=test-reports/unit/unit.json",
"test:reportlist": "jest --no-colors --no-cache --coverage",
"test:watch": "jest --no-colors --watchAll",
"upload-coverage": "coveralls < test-reports/coverage/lcov.info",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all verify test",
"commit-msg": "cz-customizable-ghooks"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/commitMessageConfig.js"
}
},
"dependencies": {
"commander": "5.1.0",
"jest-diff": "26.2.0",
"lodash": "4.17.20",
"mkdirp": "1.0.4",
"node-fetch": "2.6.1",
"openapi-enforcer": "1.10.8",
"p-pipe": "3.1.0",
"upath": "1.2.0",
"winston": "3.2.1"
},
"devDependencies": {
"@getify/eslint-plugin-proper-arrows": "9.1.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"coveralls": "3.1.0",
"cz-customizable": "6.3.0",
"eslint": "7.8.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-unicorn": "17.2.0",
"husky": "4.2.5",
"jest": "26.4.2",
"npm-run-all": "4.1.5",
"prettier": "2.1.1",
"semantic-release": "17.1.1",
"spawn-command": "0.0.2-1"
},
"engines": {
"node": ">=12.3.0",
"npm": ">=6.9"
},
"files": [
"src",
"!src/*.spec.js"
]
}