-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "spectral-aws-apigateway-ruleset",
"version": "2.2.0",
"description": "A spectral ruleset to enforce the AWS API Gateway Important Notes",
"main": "aws_important_notes.yml",
"scripts": {
"clean": "rm -rf functions/",
"build": "./node_modules/.bin/esbuild src/draft4.mjs --bundle --outfile=functions/draft4.js --platform=node",
"test": "jest",
"test-build": "cp src/draft4.mjs functions/draft4.js && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/andylockran/spectral-aws-apigateway-ruleset"
},
"keywords": [
"spectral",
"openapi",
"aws",
"apigateway"
],
"author": "Andy Loughran",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.5.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.0",
"esbuild": "^0.19.4"
},
"devDependencies": {
"@babel/preset-env": "^7.14.1",
"@stoplight/spectral-core": "^1.16.1",
"@stoplight/spectral-parsers": "^1.0.2",
"@stoplight/spectral-ruleset-bundler": "^1.5.1",
"@stoplight/spectral-runtime": "^1.1.2",
"apigw-model-validator": "^1.1.0",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-json-schema": "^6.1.0",
"js-yaml": "^4.1.0"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"json",
"mjs",
"jsx",
"ts",
"tsx",
"node"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.mjs$": "babel-jest"
},
"testRegex": "((\\.|/*.)(spec))\\.(mjs|js)?$"
}
}