-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.37 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.37 KB
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
{
"name": "@clickalicious/ci-github-bot",
"description": "GitHub communication bot for CI/CD workflows.",
"homepage": "https://github.com/clickalicious/ci-github-bot",
"bugs": {
"url" : "https://github.com/clickalicious/ci-github-bot/issues"
},
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clickalicious/ci-github-bot.git"
},
"engines": {
"node": "^6.1"
},
"main": "./dist/ci-github-bot.js",
"scripts": {
"watch": "grunt watch",
"lint": "grunt lint",
"build": "grunt build",
"build-dev": "grunt build-dev",
"test": "echo \"No tests specified\" && exit 1"
},
"keywords": [
"github",
"bot",
"pr",
"stage",
"communication",
"api"
],
"maintainers": [
{
"name": "Benjamin Carl",
"email": "opensource@clickalicious.de",
"web": "https://clickalicious.de"
}
],
"dependencies": {
"request": "^2.82"
},
"devDependencies": {
"@types/node": "^7.0",
"@types/pug": "^2.0",
"@types/dotenv": "^4.0",
"@types/request": "^2.0",
"grunt": "^1.0",
"grunt-cli": "^1.2",
"grunt-contrib-copy": "^1.0",
"grunt-contrib-watch": "^1.0",
"grunt-ts": "^6.0.0-beta.16",
"grunt-tslint": "^5.0",
"tslint": "^5.7",
"typescript": "^2.5",
"tslint-config-airbnb": "^5.3.0",
"dotenv": "^4.0"
}
}