-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 1.76 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
{
"name": "mdast-builder",
"description": "Composable functions to easily build mdast structures",
"keywords": [
"mdast"
],
"version": "0.0.0-development",
"license": "BSD-2-Clause",
"scripts": {
"pretest": "tsc",
"prepare": "tsc",
"build": "tsc -b .",
"build:watch": "yarn build -- --watch",
"test": "nyc mocha",
"test:watch": "mocha --watch",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/mike-north/mdast-builder"
},
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"devDependencies": {
"@commitlint/cli": "8.3.6",
"@commitlint/config-conventional": "8.3.6",
"@commitlint/travis-cli": "8.3.6",
"@mike-north/js-lib-renovate-config": "1.3.1",
"@mike-north/js-lib-semantic-release-config": "1.0.1",
"@types/chai": "4.2.22",
"@types/mocha": "5.2.7",
"chai": "4.3.1",
"husky": "3.1.0",
"mocha": "6.2.3",
"mocha-typescript": "1.1.17",
"nyc": "13.3.0",
"remark-stringify": "7.0.4",
"source-map-support": "0.5.21",
"ts-node": "8.10.2",
"typescript": "3.3.4000",
"unified": "7.1.0"
},
"dependencies": {
"@types/unist": "^2.0.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "./node_modules/.bin/commitlint -e $HUSKY_GIT_PARAMS"
}
},
"release": {
"extends": "@mike-north/js-lib-semantic-release-config"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
}
}