Ghost/ghost/security/package.json

33 lines
723 B
JSON
Raw Normal View History

2020-08-11 15:29:32 +03:00
{
"name": "@tryghost/security",
"version": "0.2.6",
"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": {
2021-04-01 12:06:05 +03:00
"mocha": "8.3.2",
2020-08-11 15:29:32 +03:00
"should": "13.2.3",
2021-04-02 02:49:59 +03:00
"sinon": "10.0.0"
2020-08-11 15:29:32 +03:00
},
"dependencies": {
"@tryghost/string": "0.1.14",
"bcryptjs": "2.4.3",
"bluebird": "3.7.2",
2021-04-02 00:00:55 +03:00
"lodash": "4.17.21"
}
2020-08-11 15:29:32 +03:00
}