-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "@xml-tools/ast",
"version": "5.0.5",
"description": "XML Ast and Utilities",
"keywords": [
"xml",
"ast"
],
"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/common": "^0.1.6",
"@xml-tools/parser": "^1.0.11",
"lodash": "4.17.21"
},
"devDependencies": {
"klaw-sync": "6.0.0"
},
"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",
"snapshots:update": "node ./scripts/update-snapshots.js",
"type-check": "tsc api.d.ts"
},
"publishConfig": {
"access": "public"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"reporter": [
"text",
"lcov"
]
}
}