-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"author": "linterhub <hi@linterhub.com>",
"name": "@linterhub/usage-parser",
"version": "0.0.0-development",
"description": "Simple parser for usage page in CLI",
"license": "MIT",
"repository": "linterhub/usage-parser",
"bugs": "https://github.com/linterhub/usage-parser/issues",
"bin": {
"usage-parser": "dist/bin.js"
},
"keywords": [
"linterhub"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc -p .",
"doc": "jsdoc2md --files ./src/**/*.ts --configure ./config/jsdoc2md.json > ./docs/API.md",
"lint": "tslint -c tslint.json --project . -t codeFrame",
"test:unit": "nyc mocha -r ts-node/register ./test/unit/*.test.ts",
"test:integration": "mocha -r ts-node/register ./test/integration/*.test.ts",
"test": "npm run lint && npm run build && npm run test:unit && npm run test:integration",
"semantic-release": "semantic-release"
},
"files": [
"dist/",
"README.md"
],
"husky": {
"hooks": {
"pre-commit": "npm run doc && npm run test"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"nyc": {
"check-coverage": true,
"lines": 70,
"statements": 70,
"functions": 70,
"branches": 70,
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage/**/*",
"test/**/*",
"dist/**/*",
"src/client.ts",
"src/config.ts",
"index.ts",
"bin.ts"
],
"reporter": [
"html",
"text-summary"
],
"all": true,
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-typescript": "^7.1.0",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.1",
"@types/chai": "^4.1.7",
"@types/commander": "^2.12.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.5",
"@types/sinon": "^5.0.5",
"assert": "^1.4.1",
"chai": "^4.2.0",
"commander": "^2.19.0",
"husky": "^0.14.3",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"semantic-release": "^15.9.5",
"sinon": "^7.1.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}