-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "md-js",
"version": "1.0.5",
"description": "A markdown parser",
"main": "mdjs.js",
"dependencies": {},
"devDependencies": {
"@hangxingliu/assert": "^0.1.1",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.1",
"babel-core": "^6",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-minify-simplify": "^0.5.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-merge-sibling-variables": "^6.9.0",
"babel-plugin-transform-minify-booleans": "^6.9.0",
"cheerio": "^1.0.0-rc.10",
"colors": "^1.2.1",
"fs-extra": "^5.0.0",
"mocha": "^9.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/hangxingliu/mdjs"
},
"keywords": [
"markdown",
"parser"
],
"scripts": {
"build": "node ./scripts/build.js",
"test": "mocha ./test/src/*.js"
},
"author": "LiuYue",
"license": "Apache-2.0"
}