forked from zWingz/remark-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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": "remark-container",
"version": "0.1.1",
"main": "index.js",
"browser": {
"index.js": "./dist/index.umd.js"
},
"keywords": [
"remark",
"remark-plugin",
"markdown-container",
"markdown"
],
"author": "zhengzhirong <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint index.js",
"prebuild": "yarn test",
"build": "bili --format umd --module-name remarkContainer index.js",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/zWingz/remark-container"
},
"devDependencies": {
"bili": "^4.4.0",
"cheerio": "^1.0.0-rc.2",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.1.0",
"remark": "^10.0.1",
"remark-html": "^9.0.0",
"remark-parse": "^6.0.3",
"unist-util-visit": "^1.4.0"
},
"dependencies": {},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"!**/node_modules/**"
]
}
}