-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbower.json
More file actions
35 lines (35 loc) · 829 Bytes
/
bower.json
File metadata and controls
35 lines (35 loc) · 829 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": "showdown-extension-boilerplate",
"version": "0.0.1",
"description": "A boilerplate that can be used to jumpstart your showdown extension development",
"keywords": [
"markdown",
"md",
"showdown",
"extension"
],
"license": "MIT",
"author": "Estevão Soares dos Santos",
"main": "./dist/showdown-extension-boilerplate.js",
"repository": {
"type": "git",
"url": "https://github.com/showdownjs/showdown-extension-boilerplate.git",
"web": "https://github.com/showdownjs/showdown-extension-boilerplate"
},
"dependencies": {
"showdown": "1.x.x"
},
"ignore": [
".editorconfig",
".gitattributes",
".gitignore",
".jscs.json",
".jshintignore",
".jshintrc",
".travis.yml",
"Gruntfile.js",
"package.json",
"src/*",
"test/*"
]
}