Ghost/ghost/settings-path-manager/package.json
Daniel Lockyer b64d32cc26 Removed heavy dependency within @tryghost/errors
- we previously used `@stdlib/utils` instead of the child package
  `@stdlib/copy`, which is a lot smaller and contains our only use of
  the parent
- this saves 140+MB of dependencies
2023-04-05 13:46:15 +02:00

30 lines
695 B
JSON

{
"name": "@tryghost/settings-path-manager",
"private": true,
"version": "0.0.0",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura --check-coverage mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint": "eslint . --ext .js --cache"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"c8": "7.13.0",
"mocha": "10.2.0",
"should": "13.2.3",
"sinon": "15.0.2"
},
"dependencies": {
"@tryghost/errors": "1.2.24",
"@tryghost/tpl": "0.1.22",
"date-fns": "2.29.3"
}
}