-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "@darabonba/cli",
"version": "1.2.0",
"description": "The CLI for Darabonba",
"bin": {
"dara": "./bin/dara.js"
},
"scripts": {
"test": "mocha -b -t 10000 -R spec test/**/*.test.js test/*.test.js",
"test-local": "mocha -t 10000 -R spec",
"test-local-cov": "nyc -r=html -r=text -r=lcov npm run test-local",
"test-cov": "nyc -r=html -r=text -r=lcov npm run test",
"lint": "eslint --fix bin commands lib test",
"ci": "npm run lint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "[email protected]:aliyun/darabonba-cli.git"
},
"author": "Alibaba Cloud OpenAPI Team",
"license": "Apache-2.0",
"dependencies": {
"@alicloud/tea-fileform": "^1.2.0",
"@darabonba/annotation-parser": "^1.0.0",
"@darabonba/cpp-generator": "^1.0",
"@darabonba/csharp-generator": "^1",
"@darabonba/go-generator": "^1",
"@darabonba/java-async-generator": "^1",
"@darabonba/java-generator": "^1",
"@darabonba/parser": "^1.3.0",
"@darabonba/php-generator": "^1.1.4",
"@darabonba/python-generator": "^1.0.7",
"@darabonba/repo-client": "^1",
"@darabonba/swift-generator": "^1",
"@darabonba/typescript-generator": "^1",
"chalk": "^4.1.2",
"debug": "^4.1.1",
"httpx": "^2.3.1",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"read": "^1.0.7",
"tar": "^4.4.10"
},
"devDependencies": {
"eslint": "^8",
"mocha": "^10",
"nyc": "^14.1.1"
},
"files": [
"bin",
"commands",
"lib"
],
"engines": {
"node": ">= 12"
}
}