-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 3.19 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
{
"name": "htmlsanitycheck",
"description": "This module provides some basic sanity checks on html files",
"version": "1.2.1",
"dependencies": {
"ansi-colors": "^4",
"debug": "^4.3.6",
"find-up": "^5",
"glob": "^8.1",
"js-yaml": "4.1.0",
"log-symbols": "^4.1",
"node-html-parser": "^6.1",
"strip-json-comments": "3.1.1",
"unxhr": "^1",
"uuid": "^10.0.0",
"xmlbuilder2": "^3.1.1",
"yargs": "^16.2.0",
"yargs-parser": "21.1.1",
"yargs-unparser": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/uniqueck/htmlSanityCheck.js.git"
},
"bugs": {
"url": "https://github.com/uniqueck/htmlSanityCheck.js/issues/"
},
"devDependencies": {
"@cucumber/cucumber": "^10",
"@semantic-release/changelog": "^6",
"@semantic-release/commit-analyzer": "^13",
"@semantic-release/git": "^10",
"@semantic-release/release-notes-generator": "^14",
"@sinonjs/referee": "^11.0.1",
"chai": "4.5.0",
"conventional-changelog-eslint": "^6",
"dirty-chai": "2.0.1",
"eslint": "^8",
"eslint-config-standard": "^17",
"fast-xml-parser": "^4.4.1",
"mocha": "^10",
"nyc": "^17",
"proxyquire": "^2.1.3",
"referee": "^1",
"rewiremock": "^3.14.3",
"semantic-release": "^24",
"shx": "^0.3.4",
"sinon": "^16"
},
"scripts": {
"test": "npm run test:node && npm run test:features && npm run test:smoke",
"test:node": "mocha test/**/*.spec.js",
"test:features": "cucumber-js",
"test:smoke": "node bin/htmlSanityCheck.js --sourceDir test",
"cover:unit": "nyc --silent npm run test:node",
"cover:features": "nyc --silent --no-clean npm run test:features",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"cover": "npm run cover:unit && npm run cover:features && npm run cover:report",
"lint": "eslint \"./lib/**/*.js\" \"./test/**/*.js\"",
"lint:fix": "eslint \"./lib/**/*.js\" \"./test/**/*.js\" --fix",
"lfet:UI": "exec java -classpath \"$INIT_CWD/.lfet/tool/*\" lohrfink.lfet.Application &",
"prelfet:install": "cd \"$INIT_CWD/.lfet\" && rm -rf tool",
"lfet:install": "mkdir -p \"$INIT_CWD/.lfet/tool\" && curl -fsSLO https://www.lohrfink.de/lfet.latest.inst && unzip -qj lfet.latest.inst \"lib/*.jar\" -d \"$INIT_CWD/.lfet/tool\" && rm lfet.latest.inst",
"postlfet:install": "npm run lfet:update",
"lfet:update": "curl -fsSLO https://www.lohrfink.de/lfet.latest.upd && unzip -qjo lfet.latest.upd \"*.jar\" -d \"$INIT_CWD/.lfet/tool\" && rm lfet.latest.upd",
"lfet:GenSrc": "java -classpath \"$INIT_CWD/.lfet/tool/*\" lohrfink.lfet.Application -gs \"$INIT_CWD/lfet/\" -Recursive -FileNamePattern \"*.lfet\" -SkipUnchanged -SourceCode \"JavaScript\"",
"lfet:GenTest": "java -classpath \"$INIT_CWD/.lfet/tool/*\" lohrfink.lfet.Application -GenTest -Directory \"$INIT_CWD/lfet/\" -Recursive -FileNamePattern \"*.lfet\" -intags \"cucumber\" -OutputRootfolder \"$INIT_CWD/test/features\" -ContinueOnError",
"clean": "shx rm -rf dist/*",
"release": "semantic-release"
},
"authors": [
"Constantin Krüger (https://github.com/uniqueck)"
],
"license": "MIT",
"bin": {
"htmlsanitycheck": "bin/htmlSanityCheck.js"
}
}