-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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": "directus-extension-sanitize-html",
"version": "0.0.4",
"keywords": [
"directus",
"directus-extension",
"directus-custom-hook",
"sanitize-html",
"security"
],
"directus:extension": {
"type": "hook",
"path": "dist/index.js",
"source": "src/index.ts",
"host": "^9.17.4"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/licitdev/directus-extension-sanitize-html.git"
},
"bugs": {
"url": "https://github.com/licitdev/directus-extension-sanitize-html/issues"
},
"author": {
"name": "ian",
"email": "[email protected]"
},
"license": "GPL-3.0",
"devDependencies": {
"@directus/extensions-sdk": "9.17.4",
"@types/lodash": "^4.14.184",
"@types/node": "^18.7.16",
"@types/sanitize-html": "^2.6.2",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"sanitize-html": "^2.7.1",
"typescript": "^4.8.3"
},
"files": [
"dist/**/*"
]
}