burnchart/package.json

63 lines
1.4 KiB
JSON
Raw Normal View History

2014-08-29 02:55:45 +00:00
{
2014-10-18 03:32:48 +00:00
"name": "burnchart",
"version": "0.0.0",
"description": "GitHub Burndown Chart as a Service",
2014-10-27 03:10:41 +00:00
"author": "Radek Stepan <dev@radekstepan.com> (http://radekstepan.com)",
"license": "AGPL-3.0",
"keywords": [
"github",
"issues",
"burndown",
"chart",
"scrum"
],
"repository": {
"type": "git",
"url": "git://github.com/radekstepan/burnchart.git"
},
"scripts": {
"start": "make serve",
"test": "make test"
},
2014-10-18 03:32:48 +00:00
"devDependencies": {
"grunt": "~0.4.1",
2014-10-27 02:57:44 +00:00
"grunt-mkdir": "~0.1.2",
"grunt-contrib-clean": "~0.6.0",
2014-10-18 03:32:48 +00:00
"grunt-contrib-stylus": "~0.9.0",
2014-10-27 02:57:44 +00:00
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-cssmin": "~0.10.0",
"coffeeify": "~0.7.0L",
2014-10-19 19:09:48 +00:00
"ractivate": "~0.2.0",
"browserify": "~6.1.0",
2014-10-27 03:10:41 +00:00
"watchify": "~2.1.0",
"mocha": "~2.0.1",
"coffee-script": "~1.8.0",
"async": "~0.9.0",
"d3": "~3.4.13",
"d3-tip": "Caged/d3-tip",
"proxyquire": "~1.0.1",
"lodash": "~2.4.1",
"director": "~1.2.3",
"firebase": "~1.1.2",
"lscache": "~1.0.2",
"marked": "~0.3.2",
"moment": "~2.8.3",
"normalize.css": "~3.0.2",
"ractive": "~0.6.1",
"ractive-ractive": "~0.4.4",
"ractive-transitions-fade": "~0.1.2",
"sortedindex-compare": "0.0.1",
"superagent": "~0.20.0",
"semver": "~4.1.0"
2014-10-18 03:32:48 +00:00
},
2014-10-19 19:09:48 +00:00
"browserify": {
"transform": [
"coffeeify",
"ractivate"
]
}
2014-10-27 02:57:44 +00:00
}