-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "@darabonba/java-generator",
"version": "1.3.6",
"description": "The darabonba generator for Java",
"main": "lib/generator",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint --fix lib/ test/",
"test": "mocha --reporter spec --timeout 3000 test/*.test.js",
"test-cov": "nyc -r=lcov -r=html -r=text -r=json mocha -t 3000 -R spec test/*.test.js",
"ci": "npm run lint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "[email protected]:aliyun/darabonba-java-generator.git"
},
"devDependencies": {
"eslint": "^6",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"nyc": "^14.1.1"
},
"author": "Alibaba Cloud OpenAPI Team",
"license": "Apache-2.0",
"dependencies": {
"@darabonba/parser": "^1.4.7",
"@darabonba/annotation-parser": "^1.0.0",
"html-entities": "^1.3.1",
"xml2js": "^0.5.0",
"marked": "6.0.0"
},
"files": [
"lib",
"README.md",
"README-CN.md"
],
"engines": {
"node": ">= 12"
}
}