-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 948 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 948 Bytes
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
{
"name": "bitgud-plugin",
"version": "1.0.7",
"description": "bitgud npm plugin for husky hooks",
"repository": "bitgud/bitgud-plugin",
"author": "bitgud",
"main": "./dist",
"bin": "./bin/bitgud-plugin.js",
"files": [
"bin",
"dist"
],
"dependencies": {
"axios": "^0.21.1",
"chalk": "^2.4.2",
"dotenv": "^10.0.0",
"execa": "^5.1.1",
"find-up": "^5.0.0",
"mri": "^1.1.6"
},
"scripts": {
"prepublishOnly": "npm run build",
"bitgud-plugin": "./bin/bitgud-plugin.js",
"build": "babel src -d dist --copy-files --no-copy-ignored",
"lint": "eslint . --ignore-path=.gitignore",
"prepare": "husky install",
"dev": "npm run build && npm run bitgud-plugin"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"prettier": "^2.3.2"
},
"license": "ISC"
}