burnchart/package.json

79 lines
1.8 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": {
2014-10-27 03:35:41 +00:00
"grunt": "~0.4.5",
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",
2014-10-29 04:30:42 +00:00
"grunt-contrib-watch": "~0.6.1",
2014-10-27 03:35:41 +00:00
"grunt-gh-pages": "~0.9.1",
"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",
"node-static": "~0.7.6",
2014-10-29 04:30:42 +00:00
2014-10-27 03:10:41 +00:00
"mocha": "~2.0.1",
2014-10-29 04:30:42 +00:00
"mocha-lcov-reporter": "0.0.1",
"blanket": "~1.1.6",
"coveralls": "~2.11.2",
"proxyquire": "~1.0.1",
2014-10-27 03:10:41 +00:00
"coffee-script": "~1.8.0",
"async": "~0.9.0",
"d3": "~3.4.13",
"d3-tip": "Caged/d3-tip",
"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-29 04:30:42 +00:00
},
"config": {
"blanket": {
"loader": "./node-loaders/coffee-script",
"pattern": "src",
"data-cover-never": "node_modules",
"data-cover-flags": {
"engineOnly": true
}
}
2014-10-19 19:09:48 +00:00
}
2014-10-27 02:57:44 +00:00
}