-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "commonform-commonmark",
"version": "11.0.0",
"description": "convert CommonMark to and from Common Form",
"author": "Kyle E. Mitchell <[email protected]> (https://kemitchell.com/)",
"repository": "commonform/commonform-commonmark",
"license": "BlueOak-1.0.0",
"bin": "./bin.js",
"files": [
"index.js",
"parse.js",
"stringify.js",
"bin.js"
],
"dependencies": {
"commonform-fix-strings": "^2.0.1",
"commonform-group-series": "^3.0.0",
"commonform-prepare-blanks": "^1.0.2",
"commonmark": "^0.30.0",
"github-slugger": "^1.2.1",
"gray-matter": "^4.0.2",
"has": "^1.0.3",
"legal-versioning-regexp": "^1.0.0",
"markdown-escape": "^1.0.0",
"nanoassert": "^2.0.0",
"simple-concat": "^1.0.0",
"yargs": "^17.5.0"
},
"devDependencies": {
"defence-cli": "^3.0.1",
"glob": "^8.0.1",
"licensee": "^8.2.0",
"nyc": "^15.0.0",
"replace-require-self": "^1.1.1",
"standard": "^17.0.0",
"standard-markdown": "^7.1.0",
"tape": "^5.5.3"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"test": "npm run test:readme && npm run test:suite",
"test:suite": "tape test/**.test.js",
"test:readme": "defence -i javascript README.md | replace-require-self | node",
"licenses": "licensee --errors-only",
"lint": "standard && standard-markdown README.md"
}
}