-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.14 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": "dwarf",
"private": true,
"version": "0.1.0",
"description": "Simple HTML5 Content Management System (CMS) using AngularJS and Firebase.",
"repository": {
"type": "git",
"url": "git+https://github.com/bonfimtm/dwarf.git"
},
"keywords": [
"cms",
"angularjs",
"firebase"
],
"author": {
"name": "Thiago Bonfim"
},
"license": "GNU",
"bugs": {
"url": "https://github.com/bonfimtm/dwarf/issues"
},
"homepage": "https://github.com/bonfimtm/dwarf#readme",
"devDependencies": {
"bower": "^1.7.7",
"grunt": "~0.4.5",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-htmlmin": "^1.5.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "^1.0.0",
"http-server": "^0.9.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1 ./app",
"dist": "http-server -a localhost -p 8000 -c-1 ./dist"
}
}