Ghost/ghost/package-json/package.json
Hannah Wolfe dd129e0920 Removed use of i18n in package-json
- We are going to get rid of the internal i18n tool because it doesn't solve a real use case
- Instead, we have a new tpl utility that does basic string interpolation
- This makes this module less complex as it no longer requires dependency injection to work
2021-06-09 14:10:04 +01:00

36 lines
826 B
JSON

{
"name": "@tryghost/package-json",
"version": "0.1.2",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/package-json",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 --check-coverage mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"c8": "7.7.2",
"mocha": "9.0.0",
"should": "13.2.3",
"sinon": "11.0.0",
"tmp": "0.2.1"
},
"dependencies": {
"@tryghost/errors": "^0.2.12",
"@tryghost/tpl": "^0.1.0",
"bluebird": "^3.7.2",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21"
}
}