This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
103 lines (103 loc) · 3.05 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "salve",
"description": "Salve is a Javascript library which implements a validator able to validate an XML document on the basis of a subset of RelaxNG.",
"version": "9.1.2",
"versionedSources": "lib/salve/validate.ts",
"keywords": [
"RelaxNG",
"Relax NG",
"rng",
"XML",
"validation"
],
"homepage": "https://github.com/mangalam-research/salve",
"author": "Louis-Dominique Dubeau <louisd@mangalamresearch.org>",
"contributors": [
"Jesse Bethel <keisetsu@gmail.com>",
"Bennett Buchanan <buchanan.3rd@gmail.com>"
],
"main": "lib/salve/validate.js",
"browser": "./salve.min.js",
"types": "lib/salve/validate.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mangalam-research/salve.git"
},
"bugs": "https://github.com/mangalam-research/salve/issues",
"license": "MPL-2.0",
"engines": {
"node": ">=8",
"npm": ">=6.14.8"
},
"dependencies": {
"@trust/webcrypto": "git+https://github.com/lddubeau/webcrypto.git#fix/pass-string-to-digest",
"argparse": ">=1 <2",
"file-url": "^3.0.0",
"node-fetch": "^2.6.1",
"require-dir": "^1.2.0",
"saxes": "^4.0.2",
"temp": "^0.9.1",
"tslib": "^1.12.0",
"xregexp": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@types/argparse": "^1.0.38",
"@types/chai": "^4.2.12",
"@types/file-url": "^2.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.35",
"@types/node-fetch": "^2.5.7",
"@types/require-dir": "^1.0.1",
"@types/temp": "^0.8.34",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"child-process-promise": "^2.2.1",
"conventional-changelog-cli": "^2.1.0",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-lddubeau-base": "^4.0.2",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-newer": "^1.4.0",
"husky": "^3.1.0",
"karma": "^4.4.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.4.0",
"merge-options": "^2.0.0",
"mocha": "^6.2.3",
"renovate-config-lddubeau": "^1.0.0",
"source-map-support": "^0.5.19",
"terser-webpack-plugin": "^2.3.8",
"touch": "^3.1.0",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"tslint-config-lddubeau": "^4.1.2",
"typedoc": "^0.19.2",
"typescript": "^3.9.7",
"versync": "^5.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"bin": {
"salve-convert": "./bin/salve-convert"
},
"scripts": {
"test": "gulp test",
"install_test": "gulp install_test",
"preversion": "npm test && npm run install_test && git flow release start $npm_package_version",
"version": "versync -b sync -a && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}