-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.43 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
55
56
57
58
59
60
61
62
{
"name": "local-webhook",
"version": "1.3.0",
"description": "Zero-configuration localhost webhooks",
"main": "LocalWebhook.js",
"author": "Rick Wong",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/RickWong/local-webhook.git"
},
"homepage": "https://github.com/RickWong/local-webhook",
"files": [
"*.js",
"*.json",
"*.md"
],
"keywords": [
"localhost",
"webhooks",
"webhook",
"ssh",
"reverse",
"tunnel",
"ngrok",
"promise",
"observable"
],
"private": false,
"scripts": {
"dev": "cross-env NODE_ENV=development DEBUG=local-webhook nodemon --inspect example.js",
"prettier": "find . -type f \\( -iname \\*.js -o -iname \\*.css \\) | grep -v node_modules | xargs prettier --write",
"test": "cross-env NODE_ENV=test DEBUG=local-webhook node --inspect ./node_modules/.bin/jest --runInBand ./",
"build": "yarn prettier && yarn test",
"precommit": "lint-staged"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all"
},
"lint-staged": {
"**/*.{js,css}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"cross-env": "5.*",
"express": "^4.5",
"husky": "1.*",
"jest": "24.*",
"lint-staged": "8.*",
"ngrok": "3.*",
"node-fetch": "2.*",
"nodemon": "1.*",
"prettier": "1.*"
},
"dependencies": {
"debug": "4.*",
"ssh2": "0.*"
}
}