-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.1 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.1 KB
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
{
"name": "schematron-runner",
"version": "1.1.0",
"description": "A javascript implementation of schematron testing for XML documents. This specifically resolves a need for a package that allows a quick, reliable install for validating HL7 clinical documents, such as C-CDA.",
"cjs": "build/schematron-runner.js",
"cjsDebug": "build/debug.js",
"main": "build/schematron-runner.js",
"module": "build/schematron-runner.mjs",
"browser": "build/schematron-browser.js",
"types": "esm/schematron-runner.d.ts",
"bin": "build/bin.js",
"scripts": {
"prepare": "npm run tsc && npm run rollup",
"build": "npm run tsc && npm run rollup",
"tsc": "tsc -p tsconfig.json",
"rollup": "rollup -c",
"ci": "npm run build && npm run test",
"coverage": "nyc report --reporter=text-lcov | npx coveralls",
"report": "nyc report --reporter=html",
"test": "nyc ava",
"start": "node test/browser/node-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimLuq/schematron-runner.git"
},
"author": {
"name": "Tim Lundqvist",
"url": "https://github.com/TimLuq"
},
"contributors": [
{
"name": "Eric Wadkins"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TimLuq/schematron-runner/issues"
},
"homepage": "https://github.com/TimLuq/schematron-runner#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/node": "^10.12.15",
"@types/node-fetch": "^2.1.4",
"@types/xmldom": "^0.1.29",
"ava": "^1.0.1",
"babel-polyfill": "^6.26.0",
"nyc": "^13.1.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.3",
"typescript": "^3.2.2"
},
"dependencies": {
"node-fetch": "^2.0.0",
"xmldom": "^0.1.20",
"xpath": "^0.0.27"
}
}