-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
46 lines (46 loc) · 1016 Bytes
/
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
{
"name": "@xml-tools/validation",
"version": "1.0.16",
"description": "XML validation APIs",
"keywords": [
"xml",
"validation"
],
"main": "lib/api.js",
"repository": "https://github.com/sap/xml-tools/",
"license": "Apache-2.0",
"typings": "./api.d.ts",
"files": [
"lib",
".reuse",
"LICENSES",
"api.d.ts"
],
"dependencies": {
"@xml-tools/ast": "^5.0.5",
"lodash": "4.17.21"
},
"devDependencies": {
"@xml-tools/parser": "^1.0.11"
},
"scripts": {
"ci": "npm-run-all clean type-check coverage:*",
"clean": "rimraf ./coverage ./nyc_output",
"test": "mocha \"./test/**/*spec.js\"",
"coverage:run": "nyc mocha \"./test/**/*spec.js\"",
"coverage:check": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
"type-check": "tsc api.d.ts"
},
"publishConfig": {
"access": "public"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"reporter": [
"text",
"lcov"
]
}
}