-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.14 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.14 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "vue-warehouse",
"version": "2.2.0",
"description": "A Cross-browser storage for Vue.js and Nuxt.js, with plugins support and easy extensibility based on Store.js",
"main": "dist/vue-warehouse.common.js",
"module": "dist/vue-warehouse.esm.js",
"unpkg": "dist/vue-warehouse.js",
"jsdelivr": "dist/vue-warehouse.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/juliomrqz/vue-warehouse.git"
},
"bugs": {
"url": "http://github.com/juliomrqz/vue-warehouse/issues"
},
"homepage": "https://marquez.co/docs/vue-warehouse",
"files": [
"dist",
"nuxt",
"sync",
"types/*.d.ts",
"store.js",
"sync.js"
],
"scripts": {
"dev": "node examples/server.js",
"start": "yarn run dev",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"test": "yarn run lint && yarn run unit && yarn run test:types",
"test:types": "tsc -p types/test",
"lint": "eslint --ext .js src test/unit examples",
"report-coverage": "cat ./test/unit/coverage/lcov.info | ./node_modules/.bin/codecov",
"build": "yarn run build:esm && yarn run build:umd",
"build:esm": "rollup -c ./build/rollup.esm.config.js",
"build:umd": "rollup -c ./build/rollup.umd.config.js",
"deploy": "yarn run test && yarn run build && npm publish",
"deploy-examples": "now --team aceforth-opensource --public && now --team aceforth-opensource alias vue-warehouse-examples",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"keywords": [
"julio-marquez",
"vue-warehouse",
"vue",
"vue.js",
"nuxt",
"nuxt.js",
"localstorage",
"cookie",
"cross-browser",
"storage",
"vue-plugin"
],
"author": "Julio Marquez <opensource@marquez.co>",
"license": "MIT",
"peerDependencies": {
"store": "^2.0.12",
"vue": "^2.6.14"
},
"optionalDependencies": {
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-decorators": "7.16.4",
"@babel/plugin-proposal-export-namespace-from": "7.16.0",
"@babel/plugin-proposal-function-sent": "7.16.0",
"@babel/plugin-proposal-json-strings": "7.16.0",
"@babel/plugin-proposal-numeric-separator": "7.16.0",
"@babel/plugin-proposal-throw-expressions": "7.16.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.16.0",
"@babel/plugin-transform-runtime": "7.16.4",
"@babel/preset-env": "7.16.4",
"@babel/runtime": "7.16.3",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"chalk": "4.1.2",
"codecov": "3.8.3",
"conventional-changelog-cli": "2.1.1",
"cross-env": "7.0.3",
"es6-promise": "4.2.8",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-vue-libs": "4.0.0",
"express": "4.17.1",
"express-urlrewrite": "1.4.0",
"husky": "4.3.8",
"jest": "26.6.3",
"rollup": "2.60.1",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"semver": "7.3.5",
"shelljs": "0.8.4",
"store": "2.0.12",
"typescript": "4.5.2",
"vue": "2.6.14",
"vue-loader": "15.9.8",
"vue-template-compiler": "2.6.14",
"vuex": "3.6.2",
"webpack": "4.46.0",
"webpack-dev-middleware": "4.3.0"
},
"engines": {
"node": ">= v10.24.1",
"npm": ">= 5.10.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run lint"
}
}
}