-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.28 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
{
"name": "markdown-magic-package-json",
"version": "2.0.2",
"description": "Add the package.json properties to markdown files via markdown-magic",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/forresst/markdown-magic-package-json.git"
},
"bugs": {
"url": "https://github.com/forresst/markdown-magic-package-json/issues"
},
"homepage": "https://github.com/forresst/markdown-magic-package-json#readme",
"author": {
"name": "Stéphane Reynaud",
"url": "https://github.com/forresst"
},
"files": [
"index.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && nyc ava"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"markdown-magic",
"package.json",
"plugin"
],
"dependencies": {
"findup": "^0.1.5"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"ava": "^3.4.0",
"coveralls": "^3.0.6",
"husky": "^6.0.0",
"markdown-magic": "^2.0.0",
"nyc": "^15.0.0",
"parse-markdown-metadata": "^1.0.8",
"rimraf": "^3.0.0",
"xo": "^0.38.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "node example.js"
}
}
}