-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
62
63
{
"name": "peggy-ts",
"version": "0.0.4",
"description": "TypeScript plugin for Peggy parser generator",
"author": "Dan Hudlow",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hudlow/cel-parser/issues"
},
"homepage": "https://github.com/hudlow/cel-parser#readme",
"main": "./dist/index.cjs",
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"prepare": "./bin/prepare-runtime.ts && npm run bundle",
"bundle": "mkdir dist; esbuild index.ts --bundle --platform=node --format=cjs --external:peggy --external:ts-morph --external:source-map-generator > ./dist/index.cjs",
"clean": "rm -rf dist/ node_modules/ jest.config.js library/runtime.ts",
"lint": "prettier . --check",
"format": "prettier . --write",
"check": "tsc --noEmit -p ./tsconfig.json --strict",
"test": "jest",
"verify": "npm run lint && npm run check && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hudlow/cel-parser.git"
},
"keywords": [
"peggy",
"parser",
"typescript",
"peg",
"pegjs",
"peggyjs",
"grammar"
],
"dependencies": {
"source-map-generator": "^0.8.0",
"ts-morph": "^23.0.0"
},
"peerDependencies": {
"peggy": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+.tsx?$": [
"ts-jest",
{}
]
}
}
}