Ghost/ghost/security/package.json

33 lines
728 B
JSON
Raw Normal View History

2020-08-11 15:29:32 +03:00
{
"name": "@tryghost/security",
"version": "0.2.3",
2020-08-11 15:29:32 +03:00
"repository": "https://github.com/TryGhost/Ghost-Utils/tree/master/packages/security",
"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": {
2020-11-03 02:07:13 +03:00
"mocha": "8.2.1",
2020-08-11 15:29:32 +03:00
"should": "13.2.3",
2021-01-06 18:05:05 +03:00
"sinon": "9.2.3"
2020-08-11 15:29:32 +03:00
},
"dependencies": {
"@tryghost/string": "0.1.14",
"bcryptjs": "2.4.3",
"bluebird": "3.7.2",
2020-08-13 20:20:11 +03:00
"lodash": "4.17.20"
}
2020-08-11 15:29:32 +03:00
}