-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@decathlon/newman-reporter-pullrequest-decorator",
"license": "Apache-2.0",
"version": "0.0.25",
"description": "Newman reporter allowing to decorate Github's PullRequest with postman collection results",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"lint": "eslint ./lib",
"lint:fix": "eslint ./lib --fix",
"coverage": "nyc --reporter=lcov npm run test",
"release": "npx standard-version"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"files": [
"lib/",
"index.js",
"README.md",
"code-of-conduct.md",
"contributing.md",
"contributor-licence-agreement.md"
],
"keywords": [
"newman",
"github",
"pull request",
"reporter",
"postman",
"api",
"api testing",
"testing",
"test"
],
"homepage": "https://github.com/Decathlon/newman-reporter-pullrequest-decorator",
"bugs": {
"url": "https://github.com/Decathlon/newman-reporter-pullrequest-decorator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Decathlon/newman-reporter-pullrequest-decorator.git"
},
"publishConfig": {
"access": "public"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"@octokit/rest": "^18.5.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"chai": "^4.3.4",
"chai-fs": "^2.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"standard-version": "^9.3.2"
}
}