-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1009 Bytes
/
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
{
"name": "heroku-slugify",
"version": "1.1.0",
"description": "A command line tool to deploy your application to Heroku without using git push.",
"bin": "./cli.js",
"scripts": {
"preversion": "npm test",
"standardjs": "standard",
"standardjs-format": "standard-format -w",
"pretest": "npm run standardjs",
"test": "node cli.js --help"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keimlink/heroku-slugify.git"
},
"keywords": [
"heroku",
"slug",
"build",
"deploy",
"source",
"tar"
],
"author": "Markus Zapke-Gründemann",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/keimlink/heroku-slugify/issues"
},
"homepage": "https://github.com/keimlink/heroku-slugify#readme",
"devDependencies": {
"standard": "^6.0.8",
"standard-format": "^2.1.1"
},
"dependencies": {
"argparse": "^1.0.7",
"console-stamp": "^0.2.0",
"heroku-client": "^2.4.1",
"q": "^1.4.1"
}
}