-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "jest-runner-oas-linter",
"version": "0.0.4",
"license": "MIT",
"description": "A Jest runner for oas-linter",
"repository": {
"type": "git",
"url": "git+https://github.com/elyobo/jest-runner-oas-linter.git"
},
"author": "Liam O'Boyle <liam@elyobo.net>",
"bugs": {
"url": "https://github.com/elyobo/jest-runner-oas-linter/issues"
},
"homepage": "https://github.com/elyobo/jest-runner-oas-linter#readme",
"main": "src/index.js",
"scripts": {
"test": "jest",
"format": "prettier-standard 'src/**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
]
}
},
"dependencies": {
"create-jest-runner": "^0.5.3",
"jest": "^24.6.0",
"oas-linter": "^3.0.1",
"oas-validator": "^3.3.0",
"pkg-dir": "^4.2.0"
},
"devDependencies": {
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"prettier-standard": "^9.1.1"
}
}