-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@danielx/hera",
"version": "0.8.16",
"description": "Small and fast parsing expression grammars",
"devDependencies": {
"@danielx/civet": "0.7.18",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.6",
"benchmark": "^2.1.4",
"c8": "^7.12.0",
"esbuild": "^0.15.13",
"microtime": "^3.0.0",
"mocha": "^9.1.1",
"typescript": "^5.2.2"
},
"homepage": "https://danielx.net/hera/docs/README.html",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanielXMoore/hera.git"
},
"mocha": {
"extension": [
"civet"
],
"require": [
"@danielx/civet/register",
"./register.js"
],
"reporter": "dot",
"recursive": true,
"spec": [
"test"
]
},
"c8": {
"check-coverage": true,
"100": true,
"reporter": [
"lcov",
"text"
],
"extension": [
".civet",
".mts",
".ts"
],
"exclude": [
"build/",
"dist/",
"test/"
]
},
"scripts": {
"prepublishOnly": "yarn build && yarn test",
"benchmark": "civet perf/benchmark.civet",
"build": "bash build/compile",
"build:parser": "./dist/hera < samples/hera.hera > source/parser.js",
"test": "c8 mocha"
},
"bin": {
"hera": "dist/hera"
},
"files": [
"dist/",
"register.js"
],
"main": "dist/main.js",
"exports": {
".": "./dist/main.js",
"./lib": "./dist/machine.js",
"./esbuild-plugin": "./dist/esbuild.js",
"./esbuild": "./dist/esbuild.js",
"./register": "./register.js",
"./esm": "./dist/esm.mjs",
"./*": "./*",
"./dist/*": "./dist/*"
},
"types": "dist/types.d.ts"
}