-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
83 lines (83 loc) · 2.2 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
{
"name": "vuex-persist",
"version": "3.1.3",
"description": "A Vuex persistence plugin in 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",
"repository": {
"type": "git",
"url": "git+https://github.com/championswimmer/vuex-persist.git"
},
"scripts": {
"doc:clean": "rimraf docs",
"postdoc:clean": "mkdirp docs",
"predoc": "npm run doc:clean",
"doc": "typedoc --ignoreCompilerErrors --mode modules --name vuex-persist --out docs src",
"postdoc": "nodetouch docs/.nojekyll",
"prebuild": "rimraf dist .rpt2_cache",
"build": "rollup -c build/rollup.config.js",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "cd test && mocha -r ts-node/register *.ts",
"test:dirty": "cd test && mocha -r ts-node/register *.ts",
"cover": "nyc npm test"
},
"nyc": {
"extension": [
"ts"
],
"reporter": [
"lcov",
"text-summary"
]
},
"keywords": [
"vue",
"vuex",
"persist",
"localstorage"
],
"author": "Arnav Gupta <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/championswimmer/vuex-persist/issues"
},
"homepage": "https://github.com/championswimmer/vuex-persist#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lodash": "^4.6.4",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"localforage": "^1.7.2",
"mkdirp": "^0.5.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"rollup": "^1.27.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.25.2",
"rollup-plugin-uglify": "^6.0.3",
"touch": "^3.1.0",
"ts-node": "^8.5.2",
"typedoc": "^0.15.3",
"typescript": "^3.0.3",
"vue": "^2.5.17",
"vuex": "^3.0.1"
},
"dependencies": {
"deepmerge": "^4.2.2",
"flatted": "^3.0.5"
},
"peerDependencies": {
"vuex": ">=2.5"
}
}