forked from SAP/xml-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1023 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
{
"name": "@xml-tools/simple-schema",
"version": "2.1.0",
"description": "XML Simple Schema",
"keywords": [
"xml",
"validation"
],
"main": "lib/api.js",
"repository": "https://github.com/sap/xml-tools/",
"license": "Apache-2.0",
"typings": "./api.d.ts",
"dependencies": {
"@xml-tools/ast": "^4.2.0",
"@xml-tools/content-assist": "^3.1.5",
"lodash": "4.17.15"
},
"devDependencies": {
"@xml-tools/parser": "^1.0.5",
"@xml-tools/validation": "^1.0.9"
},
"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"
]
}
}