08abfcafd1
- linting is handled separately (in CI and locally, as it's a git pre-push hook) so we shouldn't also be running it after tests
28 lines
617 B
JSON
28 lines
617 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": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura --check-coverage mocha './test/**/*.test.js'",
|
|
"lint": "eslint . --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"c8": "7.12.0",
|
|
"mocha": "10.0.0",
|
|
"should": "13.2.3",
|
|
"sinon": "14.0.0"
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^2.24.0",
|
|
"tpl": "^0.3.0"
|
|
}
|
|
}
|