-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1015 Bytes
/
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
{
"name": "@martinpavlik/edhstack-query-lang",
"version": "0.8.0",
"description": "",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"antlr": "antlr4ts -visitor QueryLang.g4",
"compile": "tsc --project tsconfig.json || true",
"build": "yarn antlr && yarn compile",
"test": "yarn build && mocha \"dist/**/*.spec.js\"",
"prepublish": "yarn build && cp package.json dist/package.json"
},
"author": "Martin Pavlik",
"license": "ISC",
"dependencies": {
"antlr4ts": "^0.5.0-alpha.3"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"antlr4ts-cli": "^0.5.0-alpha.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/MartinPavlik/edhstack-query-language.git",
"directory": "packages/edhstack-query-lang"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}