-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.33 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "xmlparsing",
"version": "1.0.7",
"description": "xml parsing",
"main": "./build/index.js",
"scripts": {
"test": "nyc --reporter=text mocha --require ts-node/register ./test/**/*.ts",
"test:report": "nyc mocha --require ts-node/register ./test/**/*.ts",
"doc": "typedoc --theme minimal --out docs ./src"
},
"author": "zsk526",
"keywords": [
"xmlparser",
"parser",
"xml",
"ast",
"generator"
],
"files": [
"build/**/*.js"
],
"repository": {
"type": "git",
"url": "git@github.com:zhengsk/xmlparsing.git"
},
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"test/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.12.2",
"chai": "^4.2.0",
"husky": "^1.3.1",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.4.1"
}
}