-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "odata-abnf",
"version": "0.0.0",
"description": "OASIS OData TC: ABNF for OData URLs, headers, and literal data values",
"scripts": {
"generate-grammar": "node node_modules/apg-js/bin/apg.sh --strict -i ./abnf/odata-abnf-construction-rules.txt,./abnf/odata-aggregation-abnf.txt,./abnf/odata-temporal-abnf.txt -o lib/grammar.js",
"run-testcases": "node lib/checkAbnf.js",
"test": "npm run generate-grammar && node lib/checkAbnf.js",
"watch": "pwsh lib/check-abnf.ps1 -watch",
"tool-test": "c8 mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oasis-tcs/odata-abnf.git"
},
"keywords": [
"OData",
"ABNF"
],
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/oasis-tcs/odata-abnf/issues"
},
"homepage": "https://github.com/oasis-tcs/odata-abnf#readme",
"dependencies": {
"apg-js": "^4.2.0",
"colors": "^1.4.0",
"yaml": "^2.3.2"
},
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.48.0",
"mocha": "^10.2.0"
}
}