2013-05-11 17:44:25 +01:00
|
|
|
{
|
2013-10-16 11:09:20 +02:00
|
|
|
"name" : "ghost",
|
2013-10-20 10:09:39 +01:00
|
|
|
"version" : "0.3.3",
|
2013-10-16 11:09:20 +02:00
|
|
|
"description" : "Just a blogging platform.",
|
|
|
|
"author" : "Ghost Foundation",
|
|
|
|
"homepage" : "http://ghost.org",
|
2013-10-24 10:39:32 -04:00
|
|
|
"keywords" : [
|
|
|
|
"ghost",
|
|
|
|
"blog",
|
|
|
|
"cms"
|
|
|
|
],
|
|
|
|
"repository" : {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/TryGhost/Ghost.git"
|
|
|
|
},
|
2013-10-16 11:09:20 +02:00
|
|
|
"private" : true,
|
|
|
|
"licenses" : [
|
|
|
|
{
|
|
|
|
"type": "MIT",
|
2013-10-16 18:46:44 +01:00
|
|
|
"url": "https://raw.github.com/TryGhost/Ghost/master/LICENSE"
|
2013-10-16 11:09:20 +02:00
|
|
|
}
|
|
|
|
],
|
2013-07-31 08:51:51 +01:00
|
|
|
"scripts": {
|
|
|
|
"start": "node index",
|
|
|
|
"test": "grunt validate --verbose"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=0.10.* <0.11.4"
|
|
|
|
},
|
|
|
|
"engineStrict": true,
|
|
|
|
"dependencies": {
|
2013-10-21 10:21:57 +01:00
|
|
|
"express": "3.4.2",
|
2013-10-24 14:07:59 -05:00
|
|
|
"express-hbs": "0.5.0",
|
2013-10-20 01:46:19 -04:00
|
|
|
"connect-slashes": "0.0.10",
|
2013-07-31 08:51:51 +01:00
|
|
|
"node-polyglot": "0.2.1",
|
|
|
|
"moment": "2.1.0",
|
|
|
|
"underscore": "1.5.1",
|
|
|
|
"showdown": "0.3.1",
|
2013-09-10 08:46:07 +01:00
|
|
|
"sqlite3": "2.1.16",
|
2013-09-22 18:20:08 -04:00
|
|
|
"bookshelf": "0.5.7",
|
|
|
|
"knex": "0.4.11",
|
2013-07-31 08:51:51 +01:00
|
|
|
"when": "2.2.1",
|
2013-10-23 13:00:28 +00:00
|
|
|
"bcryptjs": "0.7.10",
|
2013-07-31 08:51:51 +01:00
|
|
|
"node-uuid": "1.4.0",
|
|
|
|
"colors": "0.6.1",
|
2013-08-05 18:31:29 +01:00
|
|
|
"semver": "2.1.0",
|
2013-08-07 19:45:37 +10:00
|
|
|
"fs-extra": "0.6.3",
|
2013-08-18 22:50:42 +01:00
|
|
|
"downsize": "0.0.2",
|
2013-08-27 17:31:43 -05:00
|
|
|
"validator": "1.4.0",
|
2013-08-20 17:19:47 -03:00
|
|
|
"rss": "0.2.0",
|
2013-10-11 17:15:34 +01:00
|
|
|
"nodemailer": "0.5.2"
|
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"mysql": "2.0.0-alpha9"
|
2013-07-31 08:51:51 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"grunt": "~0.4.1",
|
|
|
|
"grunt-jslint": "~1.0.0",
|
|
|
|
"grunt-shell": "~0.3.1",
|
|
|
|
"grunt-contrib-sass": "~0.4.1",
|
|
|
|
"grunt-contrib-handlebars": "~0.5.10",
|
2013-10-21 08:44:10 -02:00
|
|
|
"grunt-contrib-watch": "~0.5.3",
|
2013-07-31 08:51:51 +01:00
|
|
|
"grunt-bump": "~0.0.11",
|
2013-09-18 19:56:39 +01:00
|
|
|
"grunt-contrib-clean": "~0.5.0",
|
2013-07-31 08:51:51 +01:00
|
|
|
"grunt-contrib-copy": "~0.4.1",
|
|
|
|
"grunt-contrib-compress": "~0.5.2",
|
2013-09-13 21:15:30 -05:00
|
|
|
"grunt-contrib-concat": "~0.3.0",
|
|
|
|
"grunt-contrib-uglify": "~0.2.4",
|
2013-07-31 08:51:51 +01:00
|
|
|
"grunt-groc": "~0.3.0",
|
|
|
|
"grunt-mocha-cli": "~1.0.6",
|
2013-08-17 13:39:02 -05:00
|
|
|
"grunt-express-server": "~0.4.2",
|
|
|
|
"grunt-open": "~0.2.2",
|
|
|
|
"matchdep": "~0.1.2",
|
2013-07-31 08:51:51 +01:00
|
|
|
"sinon": "~1.7.3",
|
|
|
|
"should": "~1.2.2",
|
|
|
|
"mocha": "~1.12.0"
|
|
|
|
}
|
2013-05-12 08:40:59 -05:00
|
|
|
}
|