-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "split-md",
"description": "split up Markdown file into smallers files",
"main": "src/index.js",
"scripts": {
"test": "istanbul cover -x *.test.js,src/index.js _mocha tests/*.test.js",
"commit": "git-cz",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"markdown",
"text",
"md",
"split",
"delimiter"
],
"devDependencies": {
"chai": "4.0.1",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"mocha": "3.4.2",
"semantic-release": "^6.3.2",
"shelljs": "0.7.5"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
}
},
"author": "Andy Craze <[email protected]> (http://accraze.info/)",
"license": "MIT",
"dependencies": {
"cli": "1.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/accraze/split-md.git"
},
"bugs": {
"url": "https://github.com/accraze/split-md/issues"
},
"homepage": "https://github.com/accraze/split-md",
"bin": {
"split-md": "src/index.js"
}
}