-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "node-heroku-cli",
"version": "3.0.1",
"description": "Node client for heroku",
"main": "dist/index.js",
"scripts": {
"lint": "dolint() { yarn lint:es $@; }; dolint",
"lint:es": "eslint --ext .ts . src/** --fix",
"build": "rm -rf dist && tsc",
"prepublish": "yarn build",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garyplard/node-heroku-cli.git"
},
"keywords": [
"heroku",
"node",
"typescript"
],
"author": "Gary Plard",
"license": "ISC",
"bugs": {
"url": "https://github.com/garyplard/node-heroku-cli/issues"
},
"homepage": "https://github.com/garyplard/node-heroku-cli",
"dependencies": {
"node-fetch": "2.6.7"
},
"devDependencies": {
"@types/node-fetch": "2.6.2",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"chpm": [
"yarn"
],
"files": [
"dist/*"
]
}