-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 800 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 800 Bytes
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
{
"name": "markdown-toolbar",
"version": "1.1.1",
"description": "A clone of GitHub's markdown toolbar",
"main": "./src/markdown-toolbar.js",
"directories": {
"test": "test"
},
"scripts": {
"eslint": "eslint src/*.js tests/*.js",
"test": "mocha tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikolas/markdown-toolbar.git"
},
"keywords": [
"markdown",
"commonmark"
],
"author": "Nikolas Nyby",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/nikolas/markdown-toolbar/issues"
},
"homepage": "https://github.com/nikolas/markdown-toolbar#readme",
"devDependencies": {
"eslint": "~8.23.0",
"mocha": "~8.3.0"
},
"dependencies": {
"commonmark": "~0.29.0",
"jquery": "~3.6.0"
}
}