-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.1 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
{
"name": "strider-heroku",
"version": "0.2.0",
"description": "Heroku deployment for Strider",
"main": "webapp.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint .",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-heroku.git"
},
"keywords": [
"strider",
"heroku",
"deploy",
"oauth",
"cd"
],
"author": "Jared Forsyth <[email protected]>",
"license": "MIT",
"strider": {
"id": "heroku",
"type": "job",
"title": "Heroku",
"webapp": "webapp.js",
"worker": "worker.js",
"icon": "icon.png",
"config": {
"controller": "HerokuController"
},
"userConfig": {
"controller": "HerokuController"
}
},
"dependencies": {
"execa": "^4.0.1",
"passport-heroku": "1.0.0",
"ssh-keypair": "^2.0.0",
"step": "^1.0.0",
"strider-git": "^1.0.3",
"superagent": "^5.2.2",
"tmp-promise": "^3.0.2"
},
"devDependencies": {
"eslint": "^7.0.0",
"standard-version": "^8.0.0"
}
}