-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 915 Bytes
/
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
{
"name": "markdown-it-highlight-lines",
"version": "1.0.2",
"description": "Highlight specific lines in code blocks.",
"repository": {
"url": "egoist/markdown-it-highlight-lines",
"type": "git"
},
"main": "dist/markdown-it-highlight-lines.cjs.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run lint && jest",
"lint": "xo",
"build": "bili src/index.js --js buble",
"prepublishOnly": "npm run build"
},
"author": "egoist <0x142857@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"bili": "^3.0.15",
"eslint-config-rem": "^3.0.0",
"jest": "^22.4.3",
"markdown-it": "^8.4.1",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem",
"envs": [
"jest"
]
}
}