This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mongoose-type-html",
"version": "0.0.4",
"description": "An html field-type with sanitize-html and dompurify options",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && ./node_modules/.bin/tsc",
"clean": "./node_modules/.bin/rimraf ./lib",
"test": "./node_modules/.bin/nyc --check-coverage --lines 100 ./node_modules/.bin/mocha --reporter progress",
"test:watch": "./node_modules/.bin/mocha -w --reporter min",
"lint": "./node_modules/.bin/tslint {src,test}/**/*.ts --format stylish",
"pretest": "npm run build",
"release": "./node_modules/.bin/release-it -p -n",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/CSoellinger/mongoose-type-html.git"
},
"keywords": [
"mongoose",
"schema",
"type",
"html",
"xss",
"sanitizer",
"sanitize-html",
"purifier",
"dompurify"
],
"author": "Christopher Söllinger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CSoellinger/mongoose-type-html/issues"
},
"homepage": "https://github.com/CSoellinger/mongoose-type-html",
"devDependencies": {
"@types/bluebird": "^3.5.18",
"@types/chai": "^4.0.7",
"@types/deepmerge": "^1.3.3",
"@types/jsdom": "^11.0.4",
"@types/mocha": "^2.2.44",
"@types/mongoose": "^4.7.28",
"@types/node": "^8.0.54",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"deepmerge": "^2.0.1",
"kind-of": "^6.0.1",
"mocha": "^4.0.1",
"mockgoose": "^7.3.3",
"nyc": "^11.3.0",
"release-it": "^5.0.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"ts-mocha": "^1.0.3",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"peerDependencies": {
"dompurify": "*",
"mongoose": "*",
"sanitize-html": "*"
},
"dependencies": {
"@types/dompurify": "^0.0.31",
"@types/sanitize-html": "^1.14.0",
"dompurify": "2.0.7",
"jsdom": "^11.5.1",
"mongoose": "5.7.5",
"sanitize-html": "*"
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true
}
}