-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "md-tags",
"version": "1.2.5",
"description": "NPM Package for getting tags for post and getting posts for specific tag from markdown syntax.",
"main": "tags.js",
"scripts": {
"coverage": "istanbul cover _mocha",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "mocha",
"tdd": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greybax/md-tags.git"
},
"keywords": [
"markdown",
"md",
"tags",
"post",
"article",
"md-tags",
"keywords"
],
"author": "Aleksandr Filatov <[email protected]> (https://alfilatov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/greybax/md-tags/issues"
},
"homepage": "https://github.com/greybax/md-tags#readme",
"devDependencies": {
"coveralls": "3.1.0",
"istanbul": "0.4.5",
"mocha": "8.1.3",
"mocha-lcov-reporter": "1.3.0",
"should": "13.2.3"
},
"dependencies": {
"ramda": "^0.27.0",
"remark": "^11.0.0"
}
}