-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "outbound-webhooks",
"version": "1.0.0",
"description": "A promise (async/await) based Outbound Webhooks framework for NodeJS",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --project tsconfig.json",
"test": "npm run lint && jest",
"docs": "rimraf ./docs && typedoc src/ --out docs --mode modules --module commonjs --target es6 --excludePrivate && touch ./docs/.nojekyll && gh-pages -d docs -t",
"build": "npm run clean && npm run test && tsc",
"prepublish": "npm run build",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"tslint --fix",
"git add"
]
},
"keywords": [
"outbound-webhooks-node",
"webhooks",
"webhook",
"api",
"http",
"async",
"promise"
],
"author": "Josh Stout <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zenion/outbound-webhooks-node"
},
"dependencies": {
"conf": "^6.2.0",
"got": "^9.6.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/got": "^9.6.9",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@types/uuid": "^3.4.6",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.15.0",
"typescript": "^3.7.2"
}
}