-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (40 loc) · 1.09 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
{
"name": "angular-markdown-include",
"version": "0.0.1",
"description": "Angular module for markdown and syntax highlighting.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jlguenego/angular-markdown-include.git"
},
"author": {
"name": "Yannis THOMIAS",
"email": "thomias.yannis@gmail.com"
},
"contributors": [
{
"name": "Jean-Louis GUENEGO",
"email": "jlguenego@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jlguenego/angular-markdown-include/issues"
},
"homepage": "https://github.com/jlguenego/angular-markdown-include",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-uglify": "^0.6.0",
"http-server": "^0.7.2",
"protractor": "^1.3.1"
},
"scripts": {
"postinstall": "bower install",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"pretest": "npm run update-webdriver",
"test": "protractor test/protractor-conf.js",
"prestart": "npm install",
"start": "http-server -a 0.0.0.0 -p 8001"
}
}