-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 887 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 887 Bytes
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
{
"name": "estree-formal",
"version": "2.0.0",
"description": "ESTree formal data generator.",
"main": "src/index.mjs",
"scripts": {
"build": "npm run build-grammar && tsc",
"build-grammar": "jison-es src/grammar.jison -o dist/grammar.mjs",
"prepublish": "node ."
},
"repository": {
"type": "git",
"url": "https://github.com/estree/formal"
},
"keywords": [
"estree",
"ast",
"spec",
"formal",
"data",
"generator"
],
"author": "Ingvar Stepanyan <me@rreverser.com> (http://rreverser.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/estree/formal/issues"
},
"homepage": "https://github.com/estree/formal",
"devDependencies": {
"marked": "^4.0.16"
},
"dependencies": {
"@types/marked": "^4.0.3",
"@types/node": "^17.0.36",
"jison-es": "^0.4.18",
"typescript": "^4.7.2"
}
}