Ghost/package.json

120 lines
2.9 KiB
JSON
Raw Normal View History

{
2015-05-06 02:54:23 +03:00
"name": "ghost",
2016-05-19 00:28:23 +03:00
"version": "0.8.0",
2015-05-06 02:54:23 +03:00
"description": "Just a blogging platform.",
"author": "Ghost Foundation",
"homepage": "http://ghost.org",
"keywords": [
"ghost",
"blog",
"cms"
],
"repository": {
"type": "git",
"url": "git://github.com/TryGhost/Ghost.git"
},
"bugs": "https://github.com/TryGhost/Ghost/issues",
"contributors": "https://github.com/TryGhost/Ghost/graphs/contributors",
"license": "MIT",
2015-05-06 02:54:23 +03:00
"main": "./core/index",
"scripts": {
"preinstall": "npm install semver && node -e \"require('./core/server/utils/startup-check.js').nodeVersion()\"",
2015-05-06 02:54:23 +03:00
"start": "node index",
"test": "grunt validate --verbose"
},
"engines": {
"node": "~0.10.0 || ~0.12.0 || ^4.2.0"
2015-05-06 02:54:23 +03:00
},
"dependencies": {
2015-10-12 23:32:39 +03:00
"bcryptjs": "2.3.0",
"bluebird": "3.4.0",
"body-parser": "1.15.1",
"bookshelf": "0.9.5",
2016-04-21 12:19:55 +03:00
"chalk": "1.1.3",
2016-02-07 16:09:00 +03:00
"cheerio": "0.20.0",
"compression": "1.6.2",
"connect-slashes": "1.3.1",
2015-10-13 23:33:07 +03:00
"cookie-session": "1.2.0",
"cors": "2.7.1",
2015-05-06 02:54:23 +03:00
"downsize": "0.0.8",
2016-02-08 21:45:02 +03:00
"express": "4.13.4",
"express-hbs": "1.0.1",
2016-04-21 12:41:59 +03:00
"extract-zip": "1.5.0",
"fs-extra": "0.30.0",
2016-02-11 16:13:56 +03:00
"ghost-gql": "0.0.4",
2015-10-14 12:29:08 +03:00
"glob": "5.0.15",
"html-to-text": "2.1.0",
"intl": "1.2.4",
"intl-messageformat": "1.3.0",
"jsonpath": "0.2.3",
2016-03-22 02:59:50 +03:00
"knex": "0.10.0",
2015-10-15 16:16:37 +03:00
"lodash": "3.10.1",
"lodash.tostring": "4.1.3",
2016-04-21 12:43:15 +03:00
"moment": "2.13.0",
2016-04-21 12:43:59 +03:00
"morgan": "1.7.0",
"multer": "1.1.0",
"netjet": "1.1.0",
timezones: Always use the timezone of blog setting closes #6406 - adding timeZone Service to get the offset (=timezone reg. moment-timezone) overall available - new publishedAtOffset date as CP using timeZone service and moment-timezone to calculate offset incl. DST - removing timezone-obj transform as it became obsolete with moment-timezone - reading timezones from configuration/timezones api endpoint - adding a moment-utc transform to only work with utc times in backend - when switching the timezone in the select box, the user will be shown the local time of the selected timezone - added clock service to show actual time ticking below select box - default timezone is '(GMT) Greenwich Mean Time : Dublin, Edinburgh, London' - if no timezone is saved in the settings yet, the default value will be used - showing local time in 'Publish Date' when it's a draft and no actual publishedAt value exists - Removed the format 'DD MMM YY @ HH:mm (UTC Z)' which resolves to '01 Jan 16 @ 14:00 (UTC +02:00)' - Changing the date.js helper in core/server for moment-timezone - Fix timezone select: updates `selectedTimezone` to return the matching object from `availableTimezones` - Including timezones in test for date-helper - update to moment-timezone 0.5.1 - moving form-group of 'selectTimezone' further up so - Tests: - Set except for clock service in test env - adding fixtures to mirage - adding 'service.ajax' to navigation-test.js - adding 'service:ghostPaths' to navigation-test.js - Code improvements - Changing clockservice to ES6
2016-02-02 10:04:40 +03:00
"moment-timezone": "0.5.1",
2016-01-19 13:19:58 +03:00
"node-uuid": "1.4.7",
2015-05-06 02:54:23 +03:00
"nodemailer": "0.7.1",
"oauth2orize": "1.3.0",
2016-01-19 13:24:02 +03:00
"passport": "0.3.2",
2015-05-06 02:54:23 +03:00
"passport-http-bearer": "1.0.1",
"passport-oauth2-client-password": "0.1.2",
2016-04-21 12:44:58 +03:00
"path-match": "1.2.4",
2016-01-19 13:52:25 +03:00
"rss": "1.2.1",
2016-01-19 13:55:15 +03:00
"semver": "5.1.0",
2015-05-06 02:54:23 +03:00
"showdown-ghost": "0.3.6",
"sqlite3": "3.1.4",
2015-12-08 14:01:49 +03:00
"unidecode": "0.1.8",
"validator": "5.3.0",
2016-02-09 00:30:57 +03:00
"xml": "1.0.1"
2015-05-06 02:54:23 +03:00
},
"optionalDependencies": {
"mysql": "2.1.1",
"pg": "4.1.1"
},
"devDependencies": {
"bower": "1.4.1",
2016-01-19 15:02:04 +03:00
"csscomb": "3.1.8",
"grunt": "1.0.1",
"grunt-bg-shell": "2.3.3",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-compress": "1.3.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-jshint": "1.0.0",
2016-03-31 01:22:33 +03:00
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "1.0.0",
"grunt-docker": "0.0.11",
"grunt-express-server": "0.5.3",
"grunt-jscs": "2.8.0",
"grunt-mocha-cli": "2.1.0",
"grunt-mocha-istanbul": "5.0.0",
"grunt-shell": "1.3.0",
"grunt-update-submodules": "0.4.1",
"istanbul": "0.4.3",
"matchdep": "1.0.1",
"mocha": "2.5.3",
"nock": "8.0.0",
2016-02-06 17:23:03 +03:00
"rewire": "2.5.1",
"should": "8.4.0",
"should-http": "0.0.4",
"sinon": "1.17.4",
"supertest": "1.2.0",
"tmp": "0.0.28",
"top-gh-contribs": "2.0.4"
},
"greenkeeper": {
"ignore": [
"bower",
"glob",
"lodash",
"mysql",
"nodemailer",
"pg",
"showdown-ghost"
]
2015-05-06 02:54:23 +03:00
}
}