-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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": "@alifd/doc-parser",
"version": "2.0.0",
"description": "document parser for fusion docs",
"main": "index.js",
"files": [
"src",
"index.js"
],
"scripts": {
"test-local": "egg-bin test",
"test": "npm run lint --fix && npm run test-local",
"cov": "egg-bin cov",
"lint": "eslint ./src",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alibaba-fusion/doc-parser.git"
},
"keywords": [
"markdown"
],
"dependencies": {
"@textlint/markdown-to-ast": "^6.0.5",
"marked": "^0.3.5",
"prismjs": "^1.15.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"egg-bin": "^4.1.0",
"esbuild": "^0.18.20",
"eslint": "^4.5.0",
"eslint-config-egg": "^5.0.0",
"fs-extra": "^4.0.1",
"power-assert": "^1.4.2"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/alibaba-fusion/doc-parser/issues"
},
"homepage": "https://github.com/alibaba-fusion/doc-parser#readme",
"publishConfig": {
"access": "public"
}
}