2013-05-11 20:44:25 +04:00
|
|
|
{
|
2013-10-16 13:09:20 +04:00
|
|
|
"name" : "ghost",
|
2013-10-20 13:09:39 +04:00
|
|
|
"version" : "0.3.3",
|
2013-10-16 13:09:20 +04:00
|
|
|
"description" : "Just a blogging platform.",
|
|
|
|
"author" : "Ghost Foundation",
|
|
|
|
"homepage" : "http://ghost.org",
|
2013-10-24 18:39:32 +04:00
|
|
|
"keywords" : [
|
|
|
|
"ghost",
|
|
|
|
"blog",
|
|
|
|
"cms"
|
|
|
|
],
|
|
|
|
"repository" : {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/TryGhost/Ghost.git"
|
|
|
|
},
|
2013-10-16 13:09:20 +04:00
|
|
|
"private" : true,
|
|
|
|
"licenses" : [
|
|
|
|
{
|
|
|
|
"type": "MIT",
|
2013-10-16 21:46:44 +04:00
|
|
|
"url": "https://raw.github.com/TryGhost/Ghost/master/LICENSE"
|
2013-10-16 13:09:20 +04:00
|
|
|
}
|
|
|
|
],
|
2013-07-31 11:51:51 +04:00
|
|
|
"scripts": {
|
|
|
|
"start": "node index",
|
|
|
|
"test": "grunt validate --verbose"
|
|
|
|
},
|
|
|
|
"engines": {
|
2013-10-28 21:46:08 +04:00
|
|
|
"node": "0.10.*"
|
2013-07-31 11:51:51 +04:00
|
|
|
},
|
|
|
|
"engineStrict": true,
|
|
|
|
"dependencies": {
|
2013-11-01 16:06:02 +04:00
|
|
|
"bcryptjs": "0.7.10",
|
|
|
|
"bookshelf": "0.5.7",
|
2013-11-01 17:36:36 +04:00
|
|
|
"colors": "0.6.2",
|
|
|
|
"connect-slashes": "0.0.11",
|
|
|
|
"downsize": "0.0.3",
|
|
|
|
"express": "3.4.4",
|
2013-11-01 14:31:14 +04:00
|
|
|
"express-hbs": "0.5.1",
|
2013-11-02 15:12:09 +04:00
|
|
|
"fs-extra": "0.8.1",
|
2013-11-01 17:36:36 +04:00
|
|
|
"knex": "0.4.13",
|
2013-11-01 18:30:48 +04:00
|
|
|
"moment": "2.4.0",
|
|
|
|
"node-polyglot": "0.3.0",
|
2013-11-01 17:36:36 +04:00
|
|
|
"node-uuid": "1.4.1",
|
|
|
|
"nodemailer": "0.5.5",
|
|
|
|
"rss": "0.2.1",
|
2013-11-01 18:30:48 +04:00
|
|
|
"semver": "2.2.1",
|
2013-11-01 16:06:02 +04:00
|
|
|
"showdown": "0.3.1",
|
|
|
|
"sqlite3": "2.1.19",
|
2013-11-01 17:36:36 +04:00
|
|
|
"underscore": "1.5.2",
|
2013-11-06 01:00:29 +04:00
|
|
|
"unidecode": "0.1.3",
|
2013-08-28 02:31:43 +04:00
|
|
|
"validator": "1.4.0",
|
2013-11-01 18:09:15 +04:00
|
|
|
"when": "2.5.1"
|
2013-10-11 20:15:34 +04:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"mysql": "2.0.0-alpha9"
|
2013-07-31 11:51:51 +04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2013-11-03 03:40:43 +04:00
|
|
|
"blanket": "~1.1.5",
|
2013-07-31 11:51:51 +04:00
|
|
|
"grunt": "~0.4.1",
|
|
|
|
"grunt-bump": "~0.0.11",
|
2013-09-18 22:56:39 +04:00
|
|
|
"grunt-contrib-clean": "~0.5.0",
|
2013-07-31 11:51:51 +04:00
|
|
|
"grunt-contrib-compress": "~0.5.2",
|
2013-09-14 06:15:30 +04:00
|
|
|
"grunt-contrib-concat": "~0.3.0",
|
2013-11-01 16:06:02 +04:00
|
|
|
"grunt-contrib-copy": "~0.4.1",
|
2013-11-01 16:16:44 +04:00
|
|
|
"grunt-contrib-handlebars": "~0.5.11",
|
|
|
|
"grunt-contrib-sass": "~0.5.0",
|
|
|
|
"grunt-contrib-uglify": "~0.2.5",
|
2013-11-01 16:06:02 +04:00
|
|
|
"grunt-contrib-watch": "~0.5.3",
|
2013-11-01 16:16:44 +04:00
|
|
|
"grunt-express-server": "~0.4.5",
|
|
|
|
"grunt-groc": "~0.4.0",
|
2013-11-01 16:12:01 +04:00
|
|
|
"grunt-jslint": "~1.1.1",
|
2013-11-01 16:16:44 +04:00
|
|
|
"grunt-mocha-cli": "~1.3.0",
|
|
|
|
"grunt-shell": "~0.5.0",
|
2013-11-02 13:33:15 +04:00
|
|
|
"grunt-update-submodules": "~0.2.0",
|
2013-11-01 16:16:44 +04:00
|
|
|
"matchdep": "~0.3.0",
|
|
|
|
"mocha": "~1.13.0",
|
2013-11-04 16:35:13 +04:00
|
|
|
"request": "~2.27.0",
|
2013-11-03 03:40:43 +04:00
|
|
|
"require-dir": "~0.1.0",
|
2013-10-31 04:28:53 +04:00
|
|
|
"should": "~2.0.2",
|
2013-11-04 16:35:13 +04:00
|
|
|
"sinon": "~1.7.3"
|
2013-07-31 11:51:51 +04:00
|
|
|
}
|
2013-05-12 17:40:59 +04:00
|
|
|
}
|