-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.59 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@kibibit/bountysource-hunter",
"version": "1.0.0",
"description": "Adds a bounty badge for issues with active bounties",
"author": "Neil Kalman <[email protected]>",
"license": "ISC",
"repository": "https://github.com//bountysource-hunter.git",
"homepage": "https://github.com//bountysource-hunter",
"bugs": "https://github.com//bountysource-hunter/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "echo tests",
"test:real": "jest && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"test:cov": "jest --coverage",
"coveralls": "npm run test:cov && cat ./test-results/lcov.info | coveralls",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": false,
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"@types/lodash": "^4.14.121",
"@types/nock": "^9.3.0",
"lodash": "^4.17.11",
"nock": "^10.0.0",
"probot": "^7.2.0",
"typescript": "^3.3.1"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^11.9.0",
"all-contributors-cli": "^6.1.2",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^24.0.0",
"nodemon": "^1.17.2",
"semantic-release-cli": "^4.1.0",
"smee-client": "^1.0.2",
"standard": "^12.0.1",
"ts-jest": "^24.0.0",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"html"
],
"coverageDirectory": "./test-results",
"reporters": [
"default",
[
"jest-html-reporter",
{
"pageTitle": "achievibit's Test Report",
"outputPath": "./test-results/test-report.html"
}
]
]
}
}