forked from thomaskoppelaar/markdown-it-wikilinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"name": "@shdwcat/markdown-it-wikilinks",
"version": "2.0.0",
"description": "WikiMedia-style links for the markdown-it parser",
"main": "index.js",
"scripts": {
"coverage": "rimraf coverage && istanbul cover node_modules/.bin/_mocha",
"lint-init": "eslint --init",
"lint": "eslint index.js",
"test": "npm run lint && mocha -R spec",
"test-ci": "npm run lint && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rimraf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shdwcat/markdown-it-wikilinks.git"
},
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"wiki-links",
"wikimedia",
"wiki"
],
"author": "shdwcat (https://github.com/shdwcat)",
"contributors": [
"Thomas Koppelaar <thomaskoppelaar@protonmail.com>",
"Julio Sepia <jsepia@juliosepia.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shdwcat/markdown-it-wikilinks/issues"
},
"homepage": "https://github.com/shdwcat/markdown-it-wikilinks#readme",
"devDependencies": {
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"istanbul": "^0.4.5",
"markdown-it": "^8.0.0",
"markdown-it-testgen": "^0.1.4",
"mocha": "^3.1.0",
"request": "^2.75.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"@shdwcat/markdown-it-regexp": "^0.4.0",
"extend": "^3.0.0",
"sanitize-filename": "^1.6.1"
}
}