forked from jsepia/markdown-it-wikilinks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "@kwvanderlinde/markdown-it-wikilinks",
"version": "1.0.2",
"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/kwvanderlinde/markdown-it-wikilinks.git"
},
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"wiki-links",
"wikimedia",
"wiki"
],
"author": "Julio Sepia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwvanderlinde/markdown-it-wikilinks/issues"
},
"homepage": "https://github.com/kwvanderlinde/markdown-it-wikilinks",
"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": {
"extend": "^3.0.0",
"markdown-it-regexp": "^0.4.0",
"sanitize-filename": "^1.6.1"
}
}