-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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": "openapi-runtime-expression",
"version": "1.1.0",
"description": "OpenAPI Runtime expressions parser and validator.",
"exports": {
".": "./src/index.js",
"./package.json": "./package.json",
"./runtime-expression.bnf": "./src/runtime-expression.bnf"
},
"scripts": {
"grammar:compile": "./node_modules/apg-js/bin/apg.sh --in=./src/runtime-expression.bnf --out=./src/runtime-expression.js && cd ./src && mv runtime-expression.js runtime-expression.cjs",
"test": "mocha"
},
"engines": {
"node": ">=14.16"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/char0n/openapi-runtime-expression.git"
},
"keywords": [
"openapi",
"runtime",
"expression",
"parser",
"validator"
],
"author": "Vladimír Gorej <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/char0n/openapi-runtime-expression/issues"
},
"homepage": "https://github.com/char0n/openapi-runtime-expression#readme",
"files": [
"src/",
"LICENSE",
"NOTICE",
"package.json",
"README.md",
"sbom.spdx.yaml",
"SECURITY.md"
],
"dependencies": {
"apg-js": "^4.1.2"
},
"devDependencies": {
"@commitlint/cli": "=19.6.1",
"@commitlint/config-conventional": "=18.6.2",
"chai": "=4.5.0",
"husky": "=8.0.3",
"mocha": "=11.0.1"
}
}