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": {
|
2013-10-28 17:46:08 +00:00
|
|
|
"node": "0.10.*"
|
2013-07-31 08:51:51 +01:00
|
|
|
},
|
|
|
|
"engineStrict": true,
|
|
|
|
"dependencies": {
|
2013-11-01 12:06:02 +00:00
|
|
|
"bcryptjs": "0.7.10",
|
|
|
|
"bookshelf": "0.5.7",
|
2013-11-01 13:36:36 +00:00
|
|
|
"colors": "0.6.2",
|
|
|
|
"connect-slashes": "0.0.11",
|
|
|
|
"downsize": "0.0.3",
|
|
|
|
"express": "3.4.4",
|
2013-11-01 10:31:14 +00:00
|
|
|
"express-hbs": "0.5.1",
|
2013-11-02 11:12:09 +00:00
|
|
|
"fs-extra": "0.8.1",
|
2013-11-01 13:36:36 +00:00
|
|
|
"knex": "0.4.13",
|
2013-11-01 14:30:48 +00:00
|
|
|
"moment": "2.4.0",
|
|
|
|
"node-polyglot": "0.3.0",
|
2013-11-01 13:36:36 +00:00
|
|
|
"node-uuid": "1.4.1",
|
|
|
|
"nodemailer": "0.5.5",
|
|
|
|
"rss": "0.2.1",
|
2013-11-01 14:30:48 +00:00
|
|
|
"semver": "2.2.1",
|
2013-11-01 12:06:02 +00:00
|
|
|
"showdown": "0.3.1",
|
|
|
|
"sqlite3": "2.1.19",
|
2013-11-01 13:36:36 +00:00
|
|
|
"underscore": "1.5.2",
|
2013-11-05 21:00:29 +00:00
|
|
|
"unidecode": "0.1.3",
|
2013-08-27 17:31:43 -05:00
|
|
|
"validator": "1.4.0",
|
2013-11-01 14:09:15 +00:00
|
|
|
"when": "2.5.1"
|
2013-10-11 17:15:34 +01:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"mysql": "2.0.0-alpha9"
|
2013-07-31 08:51:51 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2013-11-03 00:40:43 +01:00
|
|
|
"blanket": "~1.1.5",
|
2013-07-31 08:51:51 +01:00
|
|
|
"grunt": "~0.4.1",
|
|
|
|
"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-compress": "~0.5.2",
|
2013-09-13 21:15:30 -05:00
|
|
|
"grunt-contrib-concat": "~0.3.0",
|
2013-11-01 12:06:02 +00:00
|
|
|
"grunt-contrib-copy": "~0.4.1",
|
2013-11-01 12:16:44 +00:00
|
|
|
"grunt-contrib-handlebars": "~0.5.11",
|
|
|
|
"grunt-contrib-sass": "~0.5.0",
|
|
|
|
"grunt-contrib-uglify": "~0.2.5",
|
2013-11-01 12:06:02 +00:00
|
|
|
"grunt-contrib-watch": "~0.5.3",
|
2013-11-01 12:16:44 +00:00
|
|
|
"grunt-express-server": "~0.4.5",
|
|
|
|
"grunt-groc": "~0.4.0",
|
2013-11-01 12:12:01 +00:00
|
|
|
"grunt-jslint": "~1.1.1",
|
2013-11-01 12:16:44 +00:00
|
|
|
"grunt-mocha-cli": "~1.3.0",
|
|
|
|
"grunt-shell": "~0.5.0",
|
2013-11-02 09:33:15 +00:00
|
|
|
"grunt-update-submodules": "~0.2.0",
|
2013-11-01 12:16:44 +00:00
|
|
|
"matchdep": "~0.3.0",
|
|
|
|
"mocha": "~1.13.0",
|
2013-11-04 12:35:13 +00:00
|
|
|
"request": "~2.27.0",
|
2013-11-03 00:40:43 +01:00
|
|
|
"require-dir": "~0.1.0",
|
2013-10-31 00:28:53 +00:00
|
|
|
"should": "~2.0.2",
|
2013-11-04 12:35:13 +00:00
|
|
|
"sinon": "~1.7.3"
|
2013-07-31 08:51:51 +01:00
|
|
|
}
|
2013-05-12 08:40:59 -05:00
|
|
|
}
|