This repository has been archived by the owner on Oct 29, 2020. It is now read-only.
forked from fossabot/vuex-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.75 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": "vuex-storage",
"version": "2.0.3",
"description": "vuex-storage",
"author": "bichi",
"main": "dist/amd/index.js",
"module": "dist/esm/index.js",
"types": "declarations/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.amd.json",
"build:esm": "tsc -p tsconfig.esm.json",
"doc": "typedoc -out ./docs ./src --media ./media",
"test": "npm run test:unit",
"lint": "eslint \"src/\"",
"test:unit": "karma start config/karma.config.js --browsers=ChromeHeadless --single-run",
"test:watch": "karma start config/karma.config.js --browsers=ChromeHeadless --auto-watch",
"preversion": "npm run test && npm run build && npm run build:esm"
},
"files": [
"dist",
"declarations",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bichikim/vuex-storage.git"
},
"keywords": [
"typescript",
"vuex",
"cookie",
"local-storage",
"sessoin-storage"
],
"bugs": {
"url": "https://github.com/bichikim/vuex-storage/issues"
},
"homepage": "https://github.com/bichikim/vuex-storage#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@nuxtjs/babel-preset-app": "^0.8.0",
"@types/chai": "^4.1.6",
"@types/express": "^4.17.0",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"@vue/babel-preset-jsx": "^1.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.1.4",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"core-js": "^3.2.1",
"eslint": "6.4.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-sort-class-members": "^1.5.0",
"eslint-plugin-vue": "^5.2.3",
"express": "^4.17.1",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"node-mocks-http": "^1.7.6",
"regenerator-runtime": "^0.13.3",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.18.0",
"typescript": "^3.6.4",
"universal-cookie": "^4.0.0",
"vue-loader": "^15.7.1",
"webpack": "^4.35.0",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"cookie": "^0.4.0",
"lodash": "^4.17.15",
"vue": "^2.6.10",
"vuex": "^3.1.1"
}
}