-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.19 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
{
"name": "node-github-webhook-sdk",
"version": "0.1.0",
"description": "GitHub Webhooks API Developer Kit for Node.js",
"main": "dist/index.js",
"repository": "git@github.com:ryokohbato/node-github-webhook-sdk.git",
"author": "ryokohbato <ryokohbato@gmail.com>",
"license": "Apache-2.0",
"files": [
"dist",
"src"
],
"types": "./dist/index.d.ts",
"scripts": {
"build": "webpack",
"build:production": "NODE_ENV=\"production\" webpack",
"prepublishOnly": "cp README.md dist/ && npm run build:production",
"lint": "eslint --fix && prettier --write --cache 'src/*.ts'"
},
"devDependencies": {
"@tsconfig/strictest": "^1.0.1",
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"express": "^4.18.1"
}
}