-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 658 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 658 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
{
"name": "java-parser",
"version": "3.0.1",
"description": "Java Parser in JavaScript",
"type": "module",
"exports": {
".": {
"types": "./api.d.ts",
"default": "./src/index.js"
}
},
"repository": "https://github.com/jhipster/prettier-java/tree/main/packages/java-parser",
"license": "Apache-2.0",
"types": "./api.d.ts",
"dependencies": {
"chevrotain": "11.0.3",
"chevrotain-allstar": "0.3.1",
"lodash": "4.17.23"
},
"scripts": {
"test": "yarn run clone-samples && yarn run test:execute",
"test:execute": "mocha \"test/**/*-spec.js\"",
"clone-samples": "node ./scripts/clone-samples"
}
}