-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "remark-ruby",
"version": "0.4.0",
"description": "Custom syntax for remarkjs, adding ruby (furigana) to markdown.",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/laysent/remark-ruby.git"
},
"keywords": [
"markdown",
"remark",
"ruby",
"furigana"
],
"browser": {
"assert": "browser-assert"
},
"author": "LaySent <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/laysent/remark-ruby/issues"
},
"homepage": "https://github.com/laysent/remark-ruby#readme",
"peerDependencies": {
"remark-parse": "^9.0.0"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"dependencies": {
"browser-assert": "^1.2.1",
"micromark": "^2.11.2"
},
"devDependencies": {
"eslint": "7.18.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"jest": "^26.6.3",
"rehype-stringify": "^8.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"remark-stringify": "^9.0.1",
"unified": "^9.2.0"
},
"scripts": {
"test": "jest",
"lint": "eslint index.js index.test.js lib",
"prepublish": "npm run lint && npm run test"
}
}