-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.61 KB
/
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "vue-refresh-storage",
"version": "0.14.0",
"description": "A Vuex3.x 4.x pinia Refresh Storage plugin Typescript ",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"browser": {
"./dist/cjs/index.js": "./dist/umd/index.js",
"./dist/esm/index.js": "./dist/esm/index.js"
},
"unpkg": "dist/umd/index.min.js",
"jsdelivr": "dist/umd/index.min.js",
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c build/rollup.config.js",
"test:watch": "jest --testPathIgnorePatterns test/performance --watch",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test:pinia": "jest --testPathIgnorePatterns=test/vuex test/performance --collect-coverage",
"test:vuex": "jest --testPathIgnorePatterns=test/pinia test/performance --collect-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackdous/vuex-localForage.git"
},
"keywords": [
"vue",
"vuex 3.x",
"vuex 4.x",
"pinia",
"vuex-plugin",
"vuex-localforage",
"localforage"
],
"author": "blackdous",
"license": "MIT",
"peerDependencies": {
"vuex": ">=2.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run test:all",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testURL": "http://localhost/"
},
"bugs": {
"url": "https://github.com/blackdous/vuex-localForage/issues"
},
"homepage": "https://github.com/blackdous/vuex-localForage#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.1",
"@types/jest": "^26.0.10",
"@types/node": "^18.13.0",
"@vue/test-utils": "^2.2.10",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"dom-storage": "^2.1.0",
"flatted": "^3.1.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"localforage": "^1.9.0",
"nodemon": "^2.0.7",
"prettier": "2.1.0",
"rollup": "^2.3.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-uglify": "^6.0.4",
"semver": "^7.1.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^3.8.3",
"vue": "^3.2.47",
"vuex": "^4.1.0"
},
"dependencies": {
"deepmerge": "^4.2.2"
}
}