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 6
/
package.json
91 lines (91 loc) · 3.59 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
{
"name": "salve-dom",
"version": "6.0.1",
"description": "A library for validating DOM trees according to a Relax NG schema.",
"main": "salve-dom.min.js",
"private": true,
"types": "lib/main.d.ts",
"versionedSources": "src/main.ts",
"scripts": {
"build": "tsc -p src/tsconfig.json --outDir build/dist/lib && sed -e'/\"private\": true/d' package.json > build/dist/package.json",
"webpack": "webpack --mode production --progress --color",
"pretest": "npm run build && node tasks/convert-test-files.js",
"test": "karma start --single-run",
"posttest": "npm run lint",
"test-webpack": "npm run webpack && karma start karma-webpack.conf.js --single-run --browsers ChromeHeadless",
"lint": "tslint --format verbose -p src/tsconfig.json -c tslint.json && tslint --format verbose -p test/tsconfig.json -c test/tslint.json && eslint '*.js' 'tasks/**/*.js' 'test/**/*.js' --ignore-pattern 'test/schemas/*.js' && versync -v",
"prepack": "node -e 'require(\"assert\")(!require(\"./package.json\").private)'",
"salve-dom:pack": "cd build/dist/ && (packname=`npm pack --silent`; mv $packname ..; echo $packname)",
"test-install": "npm run test && npm run test-webpack && (test_dir=build/install_dir; rm -rf $test_dir; mkdir -p $test_dir/node_modules; packname=`npm run salve-dom:pack --silent`; (cd $test_dir; npm install ../$packname); rm -rf $test_dir)",
"prepublishOnly": "node -e 'require(\"assert\")(!require(\"./package.json\").private)'",
"salve-dom:publish": "npm run test-install && (cd build/dist && npm publish)",
"preversion": "npm run test-install",
"version": "versync -b sync -a && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "npm run salve-dom:publish",
"postpublish": "git push origin --follow-tags",
"typedoc": "typedoc --out ./build/api --name salve-dom --tsconfig ./src/tsconfig.json --listInvalidSymbolLinks",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mangalam-research/salve-dom.git"
},
"keywords": [
"RelaxNG",
"Relax",
"NG",
"rng",
"XML",
"validation",
"DOM"
],
"author": "Louis-Dominique Dubeau <ldd@lddubeau.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mangalam-research/salve-dom/issues"
},
"homepage": "https://github.com/mangalam-research/salve-dom#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@types/chai": "^4.2.15",
"@types/mocha": "^5.2.7",
"@types/systemjs": "^0.20.7",
"chai": "^4.3.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^6.8.0",
"eslint-config-lddubeau-base": "^4.0.2",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"husky": "^3.1.0",
"jsdom": "^15.2.1",
"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",
"karma-typescript-agile-preprocessor": "^2.1.3",
"mocha": "^6.2.3",
"renovate-config-lddubeau": "^1.0.0",
"systemjs": "^0.21.6",
"systemjs-plugin-text": "0.0.11",
"tslint": "^5.20.1",
"tslint-config-lddubeau": "^4.1.2",
"typedoc": "^0.20.27",
"typescript": "^3.9.9",
"versync": "^5.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"salve": "^9.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}