-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1006 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
39
40
41
42
43
{
"name": "rudus",
"version": "v1.0.0-alpha.14",
"description": "Parser combinator library for TypeScript",
"files": [
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage",
"benchmark": "vitest bench",
"build": "tsc",
"prepare": "tsc",
"prettier:write": "npx prettier --write .",
"prettier:check": "npx prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bikossor/Rudus.git"
},
"keywords": [
"parser",
"combinator",
"parser combinator",
"library"
],
"author": "André Lichtenthäler",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bikossor/Rudus/issues"
},
"homepage": "https://rudus.pages.dev",
"devDependencies": {
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^1.6.0",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}