Ghost/ghost/security/package.json

33 lines
730 B
JSON
Raw Normal View History

2020-08-11 15:29:32 +03:00
{
"name": "@tryghost/security",
"version": "0.2.7",
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/security",
2020-08-11 15:29:32 +03:00
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"mocha": "^8.3.2",
"should": "^13.2.3",
"sinon": "^10.0.0"
2020-08-11 15:29:32 +03:00
},
"dependencies": {
"@tryghost/string": "^0.1.17",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"lodash": "^4.17.21"
}
2020-08-11 15:29:32 +03:00
}