mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "react-cookie",
|
|
"version": "4.1.1",
|
|
"description": "Universal cookies for React",
|
|
"main": "cjs/index.js",
|
|
"module": "es6/index.js",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"es6",
|
|
"cjs",
|
|
"umd",
|
|
"lib",
|
|
"index.d.ts",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reactivestack/cookies.git"
|
|
},
|
|
"bugs": "https://github.com/reactivestack/cookies/issues",
|
|
"homepage": "https://github.com/reactivestack/cookies/tree/master/packages/react-cookie/#readme",
|
|
"keywords": [
|
|
"universal",
|
|
"isomophic",
|
|
"cookie",
|
|
"react"
|
|
],
|
|
"author": "Benoit Tremblay <benoit@reactivestack.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rimraf lib && rimraf es6 && rimraf cjs && rimraf umd",
|
|
"build": "npm run clean && npm run build-es6 && npm run build-cjs && npm run build-umd && npm run build-legacy",
|
|
"build-es6": "tsc",
|
|
"build-cjs": "babel es6 -D -d cjs",
|
|
"build-umd": "rollup -c",
|
|
"build-legacy": "babel es6 -D -d lib"
|
|
},
|
|
"dependencies": {
|
|
"@types/hoist-non-react-statics": "^3.0.1",
|
|
"hoist-non-react-statics": "^3.0.0",
|
|
"universal-cookie": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"react": "^16.8.0",
|
|
"react-dom": "^16.8.0",
|
|
"rimraf": "^2.6.1",
|
|
"rollup": "^1.16.4",
|
|
"typescript": "^3.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">= 16.3.0"
|
|
}
|
|
}
|