UNPKG

@iamsquare/cookie-parse

Version:
98 lines (97 loc) 2.87 kB
{ "name": "@iamsquare/cookie-parse", "version": "0.2.1", "description": "Cookie string/file parse utilities.", "main": "dist/lib/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "scripts": { "setup": "npm install", "test": "jest", "test:watch": "npm run test -- --watch", "test:coverage": "npm run test -- --coverage", "clean": "npm-run-all -p clean:*", "clean:dist": "rimraf ./dist", "clean:docs": "rimraf ./docs", "clean:coverage": "rimraf ./coverage", "build:watch": "tsc -w", "build:bundle": "rollup -c", "build:dist": "tsc -p ./tsconfig.d.json", "watch": "npm-run-all -s clean:dist build:watch", "build": "npm-run-all -s clean:dist build:dist build:bundle", "dev": "npm-run-all watch test:watch", "prod": "npm-run-all clean test:coverage build", "lint": "eslint \"src/**/*.{js,ts}\" --quiet", "lint:fix": "npm run eslint -- --fix", "prettier": "prettier --write", "docs": "npm-run-all clean:docs docs:generate", "docs:generate": "typedoc" }, "keywords": [ "netscape", "cookie", "file", "parser" ], "repository": { "type": "git", "url": "git+https://github.com/iamsquare/cookie-parse.git" }, "bugs": { "url": "https://github.com/iamsquare/cookie-parse/issues" }, "private": false, "author": "squaremarco", "license": "MIT", "devDependencies": { "@babel/cli": "^7.14.3", "@babel/core": "^7.14.3", "@babel/node": "^7.14.2", "@babel/preset-env": "^7.14.4", "@babel/preset-typescript": "^7.13.0", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-commonjs": "^19.0.0", "@rollup/plugin-node-resolve": "^13.0.0", "@rollup/plugin-typescript": "^8.2.1", "@types/jest": "^26.0.23", "@types/node": "^15.9.0", "@types/ramda": "^0.27.40", "@typescript-eslint/eslint-plugin": "^4.26.0", "@typescript-eslint/parser": "^4.26.0", "babel-jest": "^27.0.2", "chalk": "^4.1.1", "concurrently": "^6.2.0", "cross-env": "^7.0.3", "cross-var": "^1.1.0", "eslint": "^7.27.0", "eslint-config-airbnb-typescript": "^12.3.1", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.23.4", "eslint-plugin-jest": "^24.3.6", "eslint-plugin-prettier": "^3.4.0", "husky": "^4.3.6", "jest": "^27.0.3", "lint-staged": "^11.0.0", "npm-run-all": "^4.1.5", "prettier": "^2.3.0", "rimraf": "^3.0.2", "rollup": "^2.50.5", "semver": "^7.3.5", "ts-jest": "^27.0.2", "typedoc": "^0.20.36", "typescript": "^4.2.4" }, "dependencies": { "core-js": "^3.13.1", "ramda": "^0.27.1", "ramda-adjunct": "^2.33.0", "ramda-extension": "^0.11.0", "regenerator-runtime": "^0.13.7" }, "directories": { "lib": "dist" }, "publishConfig": { "access": "public" } }