-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "remark-attr",
"version": "0.11.1",
"description": "Add support of custom attributes to Markdown syntax.",
"main": "dist/index.js",
"scripts": {
"pretest": "xo",
"prepare": "del-cli dist && cross-env BABEL_ENV=production babel src --out-dir dist",
"test": "ava --tap | tap-nyan"
},
"repository": "github:arobase-che/remark-attr",
"keywords": [
"markdown",
"attribute",
"plugin"
],
"dependencies": {
"html-element-attributes": "2.x.x",
"is-whitespace-character": "1.x.x",
"md-attr-parser": "1.x.x",
"remark-footnotes": "1.x.x"
},
"author": "ache <ache@ache.one>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arobase-che/remark-attr/issues"
},
"homepage": "https://github.com/arobase-che/remark-attr#readme",
"devDependencies": {
"@babel/cli": "7.x.x",
"@babel/core": "7.x.x",
"@babel/plugin-proposal-object-rest-spread": "7.x.x",
"@babel/preset-env": "7.x.x",
"ava": "3.x.x",
"cross-env": "7.x",
"del-cli": "3.x.x",
"parse5": "6.x",
"rehype-raw": "4.x",
"rehype-stringify": "8.x",
"remark-parse": "8.x.x",
"remark-rehype": "7.x",
"tap-nyan": "1.x.x",
"unified": "9.x",
"xo": "0.32.x"
},
"xo": {
"space": true,
"rules": {
"comma-dangle": [
"error",
"always-multiline"
]
}
}
}