forked from geekplux/markdown-it-fence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.02 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": "markdown-it-fence",
"version": "0.0.2",
"description": "fence customize plugin for markdown-it",
"repository": {
"url": "geekplux/markdown-it-fence",
"type": "git"
},
"main": "dist/index.common.js",
"files": [
"dist"
],
"scripts": {
"test:cov": "jest --coverage && npm run lint",
"test": "jest && npm run lint && npm run build",
"lint": "xo",
"build": "bili --name index"
},
"author": "geekplux <geekplux@gmail.com>",
"keywords": [
"markdown",
"md",
"markdown-it",
"markdown-it-plugin"
],
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"babel": {
"env": {
"test": {
"presets": [
"es2015"
]
}
}
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"bili": "^0.14.0",
"eslint-config-geekplux": "^1.0.0",
"jest-cli": "^19.0.2",
"markdown-it": "^8.3.1",
"xo": "^0.17.1"
},
"xo": {
"extends": "geekplux",
"esnext": true,
"envs": [
"jest"
]
}
}