forked from kemitchell/markdown-escape.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 723 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 723 Bytes
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
{
"name": "markdown-escape",
"description": "escape Markdown control characters",
"version": "1.1.0",
"author": "Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com/)",
"files": [
"index.js"
],
"devDependencies": {
"commonmark": "^0.29.1",
"defence-cli": "^3.0.1",
"replace-require-self": "^1.1.1",
"standard": "^14.3.4"
},
"keywords": [
"Markdown",
"escape",
"string"
],
"license": "MIT",
"repository": "kemitchell/markdown-escape.js",
"scripts": {
"lint": "standard",
"test:readme": "defence -i javascript README.md | replace-require-self | node",
"test:suite": "node test.js",
"test": "npm run test:readme && npm run test:suite"
}
}