-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "@darabonba/cpp-generator",
"version": "1.0.7",
"description": "The SDK generator for C++",
"main": "src/generator",
"directories": {
"lib": "src"
},
"scripts": {
"lint": "eslint --fix src/ tests/",
"test": "mocha --reporter spec --timeout 3000 tests/*.tests.js",
"test-cov": "nyc -r=lcov -r=html -r=text -r=json mocha -t 3000 -R spec tests/*.tests.js",
"ci": "npm run lint && npm run test-cov && codecov"
},
"repository": {
"type": "git",
"url": "git@github.com:aliyun/darabonba-cpp-generator.git"
},
"author": "Alibaba Cloud OpenAPI Team",
"license": "Apache-2.0",
"dependencies": {
"@darabonba/parser": "^1.2",
"enum": "^3"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3",
"eslint": "^6",
"expect.js": "^0.3.1",
"has-flag": "^4.0.0",
"mm": "^3.2.0",
"mocha": "^7.1",
"mocha-sinon": "^2.1.2",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"sinon": "^9.0.2"
},
"pre-commit": {
"silent": false,
"run": [
"lint",
"test-cov"
]
}
}