forked from SAP/xml-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 974 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
{
"name": "@xml-tools/common",
"version": "0.1.2",
"description": "XML-Tools Common Utilities",
"keywords": [
"xml",
"validation"
],
"main": "lib/api.js",
"repository": "https://github.com/sap/xml-tools/",
"license": "Apache-2.0",
"typings": "./api.d.ts",
"files": [
".reuse",
"LICENSES",
"api.d.ts"
],
"dependencies": {
"lodash": "4.17.20"
},
"devDependencies": {
"@xml-tools/parser": "^1.0.7"
},
"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"
]
}
}