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