-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.99 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"version": "1.1.14",
"name": "store-persistedstate-killer",
"repository": {
"type": "git",
"url": "https://github.com/1018715564/store-persistedstate-killer.git"
},
"scripts": {
"dev": "nodemon",
"prettier": "prettier --write '**/*.{js,ts,json,md}'",
"lint-staged": "lint-staged",
"build": "rimraf lib/* && run-p build:esm build:umd build:min",
"build:esm": "rollup -c --environment FORMAT:esm",
"build:min": "rollup -c --environment FORMAT:min",
"build:umd": "rollup -c --environment FORMAT:umd",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"files": [
"lib",
"typings"
],
"keywords": [
"persistedstate",
"store-persistedstate",
"store-persistedstate-killer",
"pinia-persistedstate",
"vuex-persistedstate"
],
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/crypto-js": "^4.0.2",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.3.1",
"lint-staged": "^11.1.2",
"lodash.merge": "^4.6.2",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"pinia": "^2.0.14",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^27.0.7",
"typescript": "^4.3.5"
},
"main": "lib/index.umd.js",
"module": "lib/index.esm.js",
"typings": "typings/index.d.ts"
}