-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 937 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
{
"name": "text-sanitizer",
"version": "2.0.0",
"description": "Text Sanitizer used by NTS in their Node applications. Converts Markdown, and creates excerpts.",
"main": "text-sanitizer.js",
"scripts": {
"test": "PATH=$(npm bin):$PATH eslint ./ && PATH=$(npm bin):$PATH SENTRY_DSN=https://1234:1234@sentry.io/4567 mocha --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/ntslive/text-sanitizer.git"
},
"keywords": [
"node",
"string",
"html",
"sanitizer"
],
"author": "Andi Studer <andi@ntslive.co.uk> (https://www.nts.live)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ntslive/text-sanitizer/issues"
},
"homepage": "https://github.com/ntslive/text-sanitizer#readme",
"dependencies": {
"he": "^1.2.0",
"sanitize-html": "^2.3.3",
"showdown": "^1.9.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"mocha": "^10.0.0"
}
}