-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
58
59
60
{
"name": "@adobe/cci-test-aggregator",
"version": "1.1.28",
"description": "CircleCI Test Aggregator",
"main": "src/index.js",
"bin": {
"cci-test-aggregator": "src/index.js"
},
"scripts": {
"test": " nyc --reporter=text --reporter=lcov --check-coverage --branches 0 --statements 0 --lines 0 mocha",
"test-ci": "nyc --reporter=text --reporter=lcov --check-coverage --branches 0 --statements 0 --lines 0 mocha --reporter xunit --reporter-options output=./junit/test-results.xml && codecov",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/cci-test-aggregator"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/cci-test-aggregator/issues"
},
"homepage": "https://github.com/adobe/cci-test-aggregator#readme",
"dependencies": {
"@adobe/helix-fetch": "3.1.2",
"junit-report-builder": "2.1.0"
},
"devDependencies": {
"@adobe/eslint-config-helix": "1.3.2",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.1",
"@semantic-release/npm": "7.1.3",
"ajv": "6.12.6",
"codecov": "3.8.3",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.26.0",
"jsdoc-to-markdown": "6.0.1",
"lint-staged": "10.5.4",
"mocha": "7.2.0",
"nyc": "15.1.0",
"semantic-release": "17.4.7"
},
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npx lint-staged"
}
}
}