This repository was archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 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": "@bcgov/gh-deploy",
"version": "1.1.4",
"description": "A cli and importable node module wrapper around the github deployments api",
"main": "dist/index.js",
"bin": {
"gh-deploy": "./bin/run"
},
"files": [
"dist/commands/",
"dist/constants.js",
"bin"
],
"repository": "github:bcDevOps/gh-deploy",
"bugs": "https://github.com/patricksimonian/gh-deploy/issues",
"scripts": {
"test": "jest",
"build": "babel src -d dist --ignore src/__tests__",
"prepare": "npm run build"
},
"private": false,
"keywords": [],
"author": "Patrick Simonian",
"license": "Apache-2.0",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.1",
"globby": "^10.0.1",
"@octokit/rest": "^16.43.1"
},
"oclif": {
"commands": "dist/commands/"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@oclif/dev-cli": "^1.22.2",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.2",
"jest": "^24.9.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}