-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 2.06 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
{
"name": "@kontent-ai/webhook-helper",
"version": "3.0.3",
"description": "This utility helps with webhook notifications from Kontent.ai",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/webhook-helper-js"
},
"author": "richard sustek",
"engines": {
"node": ">= 16"
},
"main": "./dist/cjs/index.js",
"module": "./dist/es6/index.js",
"es2015": "./dist/es6/index.js",
"types": "./dist/cjs/index.d.ts",
"directories": {},
"scripts": {
"release": "npm run lint && standard-version",
"release:major": "npm run lint && standard-version --release-as major",
"release:major:beta": "npm run lint && standard-version --prerelease beta --release-as major",
"release:beta": "standard-version --prerelease",
"tsc-local": "./node_modules/.bin/tsc",
"test": "jest --config=jest.config.ts",
"ts-node-local": "./node_modules/.bin/ts-node",
"publish:beta": "npm publish --tag=next",
"build:es6": "tsc -m es6 --outDir dist/es6 --p tsconfig.prod.json",
"build:esnext": "tsc -m esnext --outDir dist/esnext --p tsconfig.prod.json",
"build:commonjs": "tsc -m commonjs --outDir dist/cjs --p tsconfig.prod.json",
"build:all": "npm run build:es6 && npm run build:esnext && npm run build:commonjs",
"lint": "eslint . --ext ts,tsx",
"fmt": "dprint fmt",
"fmt:check": "dprint check"
},
"keywords": [
"Kontent.ai",
"Kontent",
"Kontent Webhook"
],
"license": "MIT",
"devDependencies": {
"@kontent-ai/eslint-config": "^1.0.0",
"@types/jest": "^29.5.12",
"dprint": "^0.45.0",
"jest": "^29.7.0",
"@jest/globals": "^29.7.0",
"standard-version": "9.5.0",
"ts-jest": "^29.1.2",
"ts-loader": "9.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"webpack": "5.88.2",
"webpack-bundle-analyzer": "4.9.0",
"webpack-cli": "5.1.4"
},
"dependencies": {}
}