react-cookie-consent/package.json

54 lines
1.6 KiB
JSON
Raw Normal View History

2018-02-02 19:09:23 +01:00
{
"name": "react-cookie-consent",
"author": {
"name": "Rick van Lieshout",
"email": "info@rickvanlieshout.com"
},
2018-11-28 09:05:35 +01:00
"version": "1.10.0",
2018-02-02 19:09:23 +01:00
"description": "A small, simple and customizable cookie consent bar for use in React applications.",
"main": "build/index.js",
"types": "build/index.d.ts",
2018-02-02 19:09:23 +01:00
"dependencies": {
"js-cookie": "^2.2.0"
},
"peerDependencies": {
"react": "^16.4.0"
2018-02-02 19:09:23 +01:00
},
"scripts": {
2018-06-03 17:54:41 +02:00
"build": "webpack",
"patch": "npm --no-git-tag-version version patch",
2018-06-21 18:43:34 +02:00
"minor": "npm --no-git-tag-version version minor",
"release": "npm run build && git add -A && git commit -m 'version bump and build' && git push && npm publish",
"release-patch": "npm run patch && npm run release",
"release-minor": "npm run minor && npm run release"
2018-02-02 19:09:23 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mastermindzh/react-cookie-consent.git"
},
"keywords": [
"react",
"cookie",
"consent",
"cookiebar"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Mastermindzh/react-cookie-consent/issues"
},
"homepage": "https://github.com/Mastermindzh/react-cookie-consent#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
2018-06-21 18:43:34 +02:00
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
2018-10-19 14:25:16 +02:00
"babel-plugin-transform-object-rest-spread": "^6.26.0",
2018-02-02 19:09:23 +01:00
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"copy-webpack-plugin": "^4.6.0",
2018-12-05 07:32:30 +01:00
"react": "^16.4.0",
"webpack": "^2.6.1"
2018-02-02 19:09:23 +01:00
}
}