mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "universal-cookie",
|
|
"version": "4.0.4",
|
|
"description": "Universal cookies for JavaScript",
|
|
"main": "cjs/index.js",
|
|
"module": "es6/index.js",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"lib",
|
|
"es6",
|
|
"cjs",
|
|
"umd",
|
|
"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/universal-cookie#readme",
|
|
"keywords": [
|
|
"universal",
|
|
"isomophic",
|
|
"cookie"
|
|
],
|
|
"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/cookie": "^0.3.3",
|
|
"cookie": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.16.4",
|
|
"typescript": "^3.0.1"
|
|
}
|
|
}
|