forked from billytrend/commonmark-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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": "@ts-common/commonmark-to-markdown",
"version": "2.0.2",
"description": "Converts commonmark AST (back) to plain markdown",
"main": "dist/index.js",
"scripts": {
"clone-specs": "git clone https://github.com/Azure/azure-rest-api-specs md-tests/azure-rest-api-specs",
"test": "tsc && mocha ./dist/**/*test.js",
"build": "tsc",
"prepack": "npm install && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-common/commonmark-to-markdown.git"
},
"author": "",
"license": "MIT",
"files": [
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js",
"dist/index.js.map",
"src/index.ts"
],
"bugs": {
"url": "https://github.com/ts-common/commonmark-to-markdown/issues"
},
"homepage": "https://github.com/ts-common/commonmark-to-markdown#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/prettier": "^1.16.1",
"chai": "^4.2.0",
"glob": "^7.1.3",
"mocha": "^6.0.2",
"typescript": "^3.4.1"
},
"dependencies": {
"@ts-common/iterator": "^1.1.1",
"@types/commonmark": "^0.27.3",
"commonmark": "^0.28.1",
"front-matter": "^4.0.2"
}
}