cookie-storage-v2
Version:
A lightweight JavaScript UMD to handle cookies through Web Storage Interface
58 lines (57 loc) • 1.47 kB
JSON
{
"name": "cookie-storage-v2",
"version": "1.1.1",
"description": "A lightweight JavaScript UMD to handle cookies through Web Storage Interface",
"author": "David Rivera <jherax@gmail.com>",
"main": "dist/cookie-storage.js",
"module": "src/main.js",
"browser": "dist/cookie-storage.min.js",
"unpkg": "dist/cookie-storage.min.js",
"keywords": [
"cookie",
"storage",
"webStorage",
"web storage",
"javascript"
],
"repository": {
"url": "git@github.com:jherax/cookie-storage.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/jherax/cookie-storage/issues"
},
"homepage": "https://github.com/jherax/cookie-storage#readme",
"scripts": {
"webpack": "webpack",
"eslint": "eslint src || true",
"build": "webpack --bail --config webpack/build.js"
},
"engines": {
"node": ">=6.0"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"clean-webpack-plugin": "^0.1.15",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-loader": "^1.8.0",
"eslint-plugin-import": "^2.6.1",
"webpack": "^3.0.0"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"babel-plugin-add-module-exports"
]
}
}