-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.04 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
{
"name": "xhtml-cli",
"version": "0.0.0-development",
"description": "filter and sanitization for html",
"main": "dist/index.js",
"bin": {
"xhtml": "dist/index.js"
},
"scripts": {
"test": "jest",
"build": "tsc -p .",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2fd/xhtml.git"
},
"keywords": [
"html",
"cli"
],
"author": "Fede Ramirez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/2fd/xhtml/issues"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src/"
]
},
"release": {
"ci": false
},
"homepage": "https://github.com/2fd/xhtml#readme",
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"jest": "^26.6.3",
"semantic-release": "^17.4.0",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"cherio": "^1.0.0-rc.2",
"colors": "^1.4.0",
"isomorphic-fetch": "^3.0.0",
"yargs": "^16.2.0"
}
}