Ghost/ghost/members-theme-bindings/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@tryghost/members-theme-bindings",
"version": "0.1.0",
"repository": "https://github.com/TryGhost/Members/tree/master/packages/members-theme-bindings",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"clean": "rm -rf build && mkdir build",
"prebuild": "npm run clean",
"build": "browserify -s MembersThemeBindings -g es6ify index.js > build/members-theme-bindings.js",
"prepublishOnly": "npm run build",
"pretest": "npm run clean",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"build/members-theme-bindings.js"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
2019-04-23 17:45:28 +03:00
"browserify": "16.2.3",
"es6ify": "1.6.0",
"mocha": "6.1.4",
"should": "13.2.3",
"sinon": "7.3.2"
},
"dependencies": {
"@tryghost/members-browser-auth": "^0.1.1",
"bluebird": "^3.5.4",
"ghost-ignition": "^3.1.0",
"lodash": "^4.17.11"
}
}