-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "spectral-action",
"version": "0.1.0",
"description": "Lint your JSON and OAS2/3 files",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XVincentX/spectral-action.git"
},
"author": "Vincenzo Chianese <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/XVincentX/spectral-action/issues"
},
"engines": {
"node": "^12.20 || >=14.13"
},
"homepage": "https://github.com/XVincentX/spectral-action#readme",
"devDependencies": {
"@octokit/types": "^6.8.2",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.7",
"@types/pluralize": "^0.0.29",
"@types/urijs": "^1.19.13",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^4.0.0",
"@octokit/graphql": "^4.6.0",
"@octokit/request": "^5.4.14",
"@octokit/rest": "^18.1.0",
"@stoplight/spectral-core": "^1.18.3",
"@stoplight/spectral-parsers": "^1.0.3",
"@stoplight/spectral-ref-resolver": "^1.0.4",
"@stoplight/spectral-ruleset-bundler": "^1.5.2",
"@stoplight/spectral-rulesets": ">=1.18.1",
"@stoplight/types": "^13.20.0",
"fast-glob": "^3.2.7",
"fp-ts": "^2.9.5",
"io-ts": "^2.2.16",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"tslib": "^2.3.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}