Ghost/ghost/moleculer-service-from-class/package.json

33 lines
778 B
JSON
Raw Normal View History

{
"name": "@tryghost/moleculer-service-from-class",
"version": "0.2.1",
"repository": "https://github.com/TryGhost/Ghost-Utils/tree/master/packages/moleculer-service-from-class",
"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",
"types": "rm -rf types && tsc",
"pretest": "yarn types",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
2020-05-25 03:22:52 +03:00
"mocha": "7.2.0",
"should": "13.2.3",
"sinon": "9.0.2",
2020-05-20 03:17:28 +03:00
"typescript": "3.9.3"
},
"dependencies": {
2020-05-22 20:15:59 +03:00
"moleculer": "0.14.7"
}
}