This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.52 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
61
{
"name": "@chevrotain/quick-start",
"description": "Your easy path to define a parser for your language based on Chevrotain DSL toolkit",
"version": "0.0.1",
"private": true,
"keywords": [
"chevrotain",
"starter pack",
"dsl",
"parser"
],
"homepage": "https://github.com/Chevrotain/quick-start",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Chevrotain/quick-start"
},
"scripts": {
"clean": "rm -rf dist && rm -rf coverage && rm -rf yarn-error.log",
"compile": "tsc",
"compile:clean": "yarn clean && yarn compile",
"compile:watch": "tsc --watch",
"generate-diagram": "node scripts/generateDiagram.js",
"build": "rm -rf dist && tsc && yarn generate-diagram",
"prepublish": "yarn build",
"test": "ts-node -O '{\"module\":\"commonjs\"}' node_modules/jest/bin/jest.js ",
"test:watch": "ts-node -O '{\"module\":\"commonjs\"}' node_modules/jest/bin/jest.js --watch"
},
"dependencies": {
"chevrotain": "^7.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^12.12.31",
"jest": "^25.5.4",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"jest": {
"collectCoverage": false,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"roots": [
"test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
],
"testTimeout": 120000
}
}