255eb0726b
refs https://github.com/TryGhost/Toolbox/issues/354 - set packages to `private: true` - removed repository link - these packages won't be published so this link won't be seen anywhere - removed `publishConfig`
24 lines
638 B
JSON
24 lines
638 B
JSON
{
|
|
"name": "@tryghost/extract-api-key",
|
|
"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 --check-coverage --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
"lint:code": "eslint *.js lib/ --ext .js --cache",
|
|
"lint": "yarn lint:code && yarn lint:test",
|
|
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache",
|
|
"posttest": "yarn lint"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"dependencies": {
|
|
"jsonwebtoken": "^8.5.1"
|
|
}
|
|
}
|