forked from valeriangalliat/markdown-it-anchor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.39 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
55
{
"name": "markdown-it-anchor",
"version": "2.6.0",
"description": "Header anchors for markdown-it.",
"keywords": [
"markdown-it-plugin"
],
"homepage": "https://github.com/valeriangalliat/markdown-it-anchor",
"license": "Unlicense",
"author": {
"name": "Valérian Galliat",
"url": "http://val.codejam.info/"
},
"files": [
"README.md",
"UNLICENSE",
"index.js",
"demo.js"
],
"repository": {
"type": "git",
"url": "https://github.com/valeriangalliat/markdown-it-anchor.git"
},
"scripts": {
"build": "babel index.es6.js -o index.js",
"lint": "standard index.es6.js test.js",
"prepublish": "npm run build",
"test": "npm run lint && npm run build && babel-node test.js",
"dist": "browserify index.es6.js --standalone markdownItAnchor -o dist/markdown-it-anchor.js -t babelify"
},
"dependencies": {
"string": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-object-assign": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"markdown-it": "^6.0.0",
"standard": "^4.0.1"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign",
"add-module-exports"
]
},
"tonicExampleFilename": "demo.js"
}