-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.59 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.59 KB
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
{
"name": "ecmascript-parser-benchmark",
"description": "Compares the speed and package size of various ECMAScript parsers and code generators.",
"version": "1.0.0",
"author": "Ferdinand Prantl <prantlf@gmail.com>",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/ecmascript-parser-benchmark/blob/master/package/LICENSE"
}
],
"homepage": "https://github.com/prantlf/ecmascript-parser-benchmark#readme",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/ecmascript-parser-benchmark.git"
},
"bugs": {
"url": "https://github.com/prantlf/ecmascript-parser-benchmark/issues"
},
"scripts": {
"start:parser:script": "node perf/script",
"start:parser:module": "node perf/module",
"start:parser": "npm run start:parser:script && npm run start:parser:module",
"start:parser:script:locations": "node perf/script --locations",
"start:parser:module:locations": "node perf/module --locations",
"start:parser:locations": "npm run start:parser:script:locations && npm run start:parser:module:locations",
"start:parser:all": "npm run start:parser && npm run start:parser:locations",
"start:generator": "node perf/generator",
"start:generator:sourcemap": "node perf/generator --source-map",
"start:generator:all": "npm run start:generator && npm run start:generator:sourcemap",
"start:sizes": "package-size esprima acorn @babel/parser meriyah seafox kataw @azariasb/escaya tenko && node perf/tree-sitter-size",
"start": "npm run start:parser:all && npm run start:generator:all && npm run start:sizes",
"test": "biome lint",
"version": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@azariasb/escaya": "^0.0.63",
"@babel/generator": "^7.28.3",
"@babel/parser": "^7.28.4",
"@biomejs/biome": "^2.2.5",
"acorn": "^8.15.0",
"astring": "^1.9.0",
"benchmark": "^2.1.4",
"cherow": "^1.6.9",
"escodegen": "^2.1.0",
"esprima": "^4.0.1",
"hermes-parser": "^0.32.1",
"jquery": "^3.7.1",
"kataw": "^0.0.81",
"marionette": "^5.0.0-alpha.2",
"meriyah": "^6.1.4",
"package-cost": "^0.4.0",
"seafox": "^1.7.1",
"source-map": "^0.7.6",
"tenko": "^2.0.1",
"tree-sitter": "^0.25.0",
"tree-sitter-javascript": "^0.25.0"
},
"keywords": [
"ecmascript",
"ecmascript-parser",
"parser",
"code-generator",
"benchmark"
],
"trustedDependencies": [
"@biomejs/biome",
"ejs",
"fsevents",
"tree-sitter",
"tree-sitter-javascript"
]
}