forked from McNull/angular-markdown-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bower.json
66 lines (66 loc) · 1.47 KB
/
bower.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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "angular-markdown-text",
"description": "An easy to use markdown directive with static outlining, html escaping/sanitization, resource loading and model binding.",
"homepage": "https://github.com/McNull/angular-markdown-text",
"repository": "git@github.com:McNull/angular-markdown-text.git",
"keywords": [
"angular",
"angularjs",
"markdown",
"directive"
],
"main": "dist/angular-markdown-text.js",
"version": "0.0.2",
"authors": [
"Null McNull <no@spam.org>"
],
"moduleType": [
"globals"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"gulp-tasks",
"src",
"dest",
"/build-config.js",
"/gulpfile.js",
"/package.json",
"/karma.conf.js"
],
"dependencies": {
"angular": "~1.2.26",
"showdown": "~0.3.1"
},
"devDependencies": {
"bootstrap": "~3.2.0",
"angular-route": "~1.2.26",
"angular-mocks": "~1.2.26",
"jquery": "1.*",
"respond": "~1.4.2",
"html5shiv": "~3.7.2",
"angular-sanitize": "~1.2.26",
"marked": "~0.3.2"
},
"overrides": {
"respond": {
"main": "dest/respond.min.js"
},
"angular-mocks": {
"ignore": true
},
"showdown": {
"main": [
"compressed/showdown.js",
"compressed/extensions/github.js",
"compressed/extensions/google-prettify.js",
"compressed/extensions/twitter.js"
]
},
"marked": {
"main": "lib/marked.js"
}
}
}