Ghost/ghost/portal/package.json

66 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "@tryghost/members-js",
2020-09-17 18:47:43 +03:00
"version": "0.9.1",
2020-03-24 16:07:38 +03:00
"license": "MIT",
"repository": "git@github.com:TryGhost/portal.git",
2020-03-24 16:07:38 +03:00
"author": "Ghost Foundation",
"unpkg": "umd/members.min.js",
"files": [
"umd/",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "11.0.4",
"@testing-library/user-event": "12.1.5",
2020-04-27 23:07:32 +03:00
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-scripts": "3.4.3"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build:combined && npm run build:bundle",
"build:combined": "node ./scripts/build-combined.js",
"build:bundle": "webpack --config webpack.config.js",
"test": "react-scripts test --env=jsdom-fourteen",
"eject": "react-scripts eject",
"lint": "eslint src --ext .js --cache",
"preship": "yarn lint",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push ${GHOST_UPSTREAM:-upstream} master --follow-tags; fi",
"posttest": "yarn lint",
"prepublishOnly": "yarn build"
},
"eslintConfig": {
2020-05-01 10:35:23 +03:00
"extends": [
"react-app",
"plugin:ghost/browser"
],
"plugins": [
"ghost"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-plugin-ghost": "1.5.0",
2020-04-27 23:07:32 +03:00
"rewire": "5.0.0",
"webpack-cli": "3.3.12"
}
}