-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 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
48
49
50
51
52
53
54
55
56
57
{
"name": "arcdown",
"version": "2.3.0",
"description": "A small stack of Markdown tools configured using the Architect's team preferred conventions.",
"author": "",
"repository": "@architect/arcdown",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/architect/arcdown/issues"
},
"type": "module",
"scripts": {
"lint": "eslint src --fix",
"build": "node ./scripts/cp-hljs.js",
"tape": "tape test/*-test.js | tap-arc",
"test": "npm run lint && npm run tape"
},
"main": "./src/index.js",
"exports": "./src/index.js",
"files": [
"src"
],
"dependencies": {
"@architect/syntaxes": "git+https://github.com/architect/syntaxes.git#v1.2.1",
"gray-matter": "^4.0.3",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-class": "^1.0.0",
"markdown-it-external-anchor": "^1.0.0",
"markdown-it-toc-done-right": "^4.2.0"
},
"devDependencies": {
"@architect/eslint-config": "^2.1.2",
"eslint": "^8.56.0",
"fs-extra": "^11.2.0",
"highlight.js": "^11.9.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.5"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"extends": "@architect/eslint-config",
"rules": {
"fp/no-class": "off"
},
"ignorePatterns": [
"src/vendor/**/*"
]
},
"keywords": [
"markdown",
"ssr"
]
}