-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.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
{
"name": "markdown-viewer",
"version": "1.0.1",
"description": "A simple development-time markdown to HTML renderer",
"main": "src/cli.js",
"bin": {
"markdown-viewer": "src/cli.js"
},
"scripts": {
"test": "mocha _tests/\"{,/**/}*.test.js\"",
"test:watch": "npm test -- -w",
"test:coverage": "nyc npm test",
"commit": "git-cz",
"lint": "./node_modules/.bin/eslint ./src",
"lint:fix": "npm run lint -- --fix",
"codecov": "codecov",
"draft-release": "standard-version",
"draft-release:simulate": "npm run draft-release -- --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplymichael/markdown-viewer.git"
},
"keywords": [
"markdown",
"html",
"readme.md",
"contributing.md",
"license.md"
],
"author": "simplymichael <[email protected]> (https://github.com/simplymichael)",
"license": "MIT",
"bugs": {
"url": "https://github.com/simplymichael/markdown-viewer/issues"
},
"homepage": "https://github.com/simplymichael/markdown-viewer#readme",
"devDependencies": {
"chai": "4.2.0",
"chai-files": "1.4.0",
"codecov": "3.8.1",
"commitizen": "4.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.16.0",
"ghooks": "2.0.4",
"mocha": "8.2.1",
"nyc": "15.1.0",
"standard-version": "9.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test:coverage"
}
},
"dependencies": {
"app-root-path": "3.0.0",
"marked": "1.2.7",
"meow": "8.0.0",
"minimist": "1.2.5",
"open": "7.3.0",
"read-file": "0.2.0",
"write": "2.0.0"
}
}