-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.29 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": "teg-parser",
"version": "0.15.0",
"author": "Tanishq Kancharla <[email protected]>",
"description": "A tiny parser framework",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"parser",
"PEG",
"parser expression grammer",
"toolkit",
"types"
],
"license": "MIT",
"exports": {
"./testParser": {
"require": "./dist/testParser.cjs",
"import": "./dist/testParser.js",
"types": "./dist/testParser.d.ts"
},
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"testParser": [
"dist/testParser"
]
}
},
"files": [
"dist/*"
],
"sideEffects": false,
"repository": {
"url": "https://github.com/tanishqkancharla/teg"
},
"scripts": {
"typecheck": "tsc --noEmit --watch",
"build": "npm run clean; tsx build.ts",
"clean": "rm -rf dist/*",
"release": "npm run clean; npm run build; npm publish",
"test": "jest --verbose",
"bundlesize": "esbuild src/index.ts --bundle --minify --outfile=out.js ; rm out.js"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"esbuild": "^0.15.13",
"esbuild-jest": "^0.5.0",
"jest": "^28.1.0",
"tsx": "^3.11.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}