Ghost/ghost/members-importer/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

33 lines
778 B
JSON

{
"name": "@tryghost/members-importer",
"version": "0.0.0",
"author": "Ghost Foundation",
"private": true,
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint": "eslint . --ext .js --cache"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"c8": "7.13.0",
"fs-extra": "11.1.1",
"mocha": "10.2.0",
"should": "13.2.3",
"sinon": "15.0.2"
},
"dependencies": {
"@tryghost/errors": "1.2.24",
"@tryghost/logging": "2.4.1",
"@tryghost/members-csv": "0.0.0",
"@tryghost/tpl": "0.1.22",
"moment-timezone": "0.5.23"
}
}