|
| 1 | +{ |
| 2 | + "name": "secure-ls", |
| 3 | + "description": "Secure localStorage/sessionStorage data with high level of encryption and data compression", |
| 4 | + "main": "./dist/secure-ls.js", |
| 5 | + "browser": "./dist/secure-ls.js", |
| 6 | + "typings": "./types/secure-ls.d.ts", |
| 7 | + "scripts": { |
| 8 | + "build": "yarn build-dev && yarn build-prod", |
| 9 | + "build-dev": "webpack --mode=development", |
| 10 | + "build-prod": "webpack --mode=production", |
| 11 | + "build:patch": "yarn build-dev --env type=patch npm version patch", |
| 12 | + "build:minor": "yarn build-dev --env type=minor npm version minor", |
| 13 | + "build:major": "yarn build-dev --env type=major npm version major", |
| 14 | + "lint": "eslint src/*.js --fix", |
| 15 | + "prettier": "prettier -w **/*.js *.md", |
| 16 | + "test:dev": "jest --watch --runInBand --debug --colors --errorOnDeprecated", |
| 17 | + "test:prod": "jest --runInBand --colors --errorOnDeprecated", |
| 18 | + "test:coverage": "jest --coverage --coverageDirectory=coverage && cat ./coverage/lcov.info" |
| 19 | + }, |
| 20 | + "dependencies": { |
| 21 | + "crypto-js": "^4.2.0", |
| 22 | + "lz-string": "^1.5.0" |
| 23 | + }, |
| 24 | + "devDependencies": { |
| 25 | + "@babel/core": "^7.24.5", |
| 26 | + "@babel/preset-env": "^7.24.5", |
| 27 | + "babel-jest": "^25.x.x", |
| 28 | + "jest": "^25.x.x", |
| 29 | + "jest-environment-jsdom": "^25.x.x", |
| 30 | + "semver": "^7.6.2" |
| 31 | + }, |
| 32 | + "repository": { |
| 33 | + "type": "git", |
| 34 | + "url": "https://github.com/softvar/secure-ls.git" |
| 35 | + }, |
| 36 | + "keywords": ["secure-ls", "localStorage", "encryption", "compression", "webpack", "es6", "umd", "commonjs"], |
| 37 | + "author": "Varun Malhotra", |
| 38 | + "license": "MIT", |
| 39 | + "bugs": { |
| 40 | + "url": "https://github.com/softvar/secure-ls/issues" |
| 41 | + }, |
| 42 | + "homepage": "https://github.com/softvar/secure-ls", |
| 43 | + "engines": { |
| 44 | + "node": ">=8.0" |
| 45 | + }, |
| 46 | + "engineStrict": true |
| 47 | +} |
0 commit comments