forked from jGleitz/markdown-it-prism
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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-prism",
"version": "2.0.1",
"description": "Highlights code blocks in markdown-it using Prism.",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"highlight",
"prism",
"prismjs"
],
"homepage": "https://github.com/jGleitz/markdown-it-prism",
"license": "GPL-3.0",
"author": {
"name": "Joshua Gleitze",
"url": "https://joshuagleitze.de"
},
"files": [
"README.md",
"LICENSE",
"build/index.js",
"CHANGELOG.md"
],
"main": "build/index.js",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jGleitz/markdown-it-prism.git"
},
"scripts": {
"build": "babel *.js -d build",
"lint": "eslint *.js",
"prepare": "npm run build",
"unittest": "mocha test.js",
"test": "npm run lint && npm run unittest"
},
"dependencies": {
"prismjs": "^1.15.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"eslint": "^5.9.0",
"markdown-it": "^8.4.2",
"mocha": "^6.0.0"
}
}