-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "@bix-digital/directus-extension-version-control-changelog",
"version": "0.8.1",
"description": "A Directus hook extension to push user written change summaries (from a singleton collection text field) to a changelog in a VCS server",
"author": {
"name" :"BI X Digital Engineers",
"url": "https://www.bix-digital.com"
},
"license": "Apache-2.0",
"homepage": "https://github.com/BIX-Digital/directus-version-control-changelog",
"repository": {
"type": "git",
"url": "https://github.com/BIX-Digital/directus-version-control-changelog.git"
},
"bugs": {
"url": "https://github.com/BIX-Digital/directus-version-control-changelog/issues"
},
"keywords": [
"directus",
"directus-extension",
"directus-custom-hook",
"bitbucket",
"vcs",
"changelog"
],
"directus:extension": {
"type": "hook",
"path": "dist/index.js",
"source": "src/index.ts",
"host": "^9.5.1"
},
"scripts": {
"build": "directus-extension build",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@directus/extensions-sdk": "9.5.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.16",
"axios": "^0.24.0",
"jest": "^27.5.1",
"pino": "^7.6.5",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"form-data": "^4.0.0"
}
}