-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 972 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
{
"name": "@sinclair/parsebox",
"version": "0.8.2",
"description": "Parser Combinators in the TypeScript Type System",
"keywords": [
"typescript",
"parsers",
"combinators",
"type-system"
],
"author": "sinclairzx81",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sinclairzx81/parsebox"
},
"scripts": {
"clean": "hammer task clean",
"format": "hammer task format",
"start": "hammer task start",
"test:typescript": "hammer task test_typescript",
"test:static": "hammer task test_static",
"test:runtime": "hammer tas test_runtime",
"test": "hammer task test",
"build": "hammer task build",
"publish": "hammer task publish"
},
"devDependencies": {
"@sinclair/hammer": "^0.18.0",
"@sinclair/typebox": "^0.34.7",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.4",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"typescript": "^4.9.5"
}
}