-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1017 Bytes
/
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
{
"name": "hukk",
"version": "1.3.0",
"description": "Portable webhook for NodeJS micro-service",
"keywords": [
"webhook",
"http",
"api",
"hook"
],
"main": "dist/hukk.js",
"typings": "dist/index.d.ts",
"repository": "[email protected]:nampdn/hukk.git",
"author": "Nam Pham <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist/*"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"prebuild": "npx rimraf dist"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.13",
"@types/node": "20.16.11",
"jest": "29.7.0",
"rimraf": "6.0.1",
"rollup": "4.24.0",
"rollup-plugin-commonjs": "10.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"rollup-plugin-typescript2": "0.36.0",
"semantic-release": "24.1.2",
"ts-jest": "29.2.5",
"typescript": "5.6.2"
}
}