UNPKG

4.28 kBJSONView Raw
1{
2 "name": "vue-ls",
3 "version": "4.0.0",
4 "description": "Vue plugin for work with LocalStorage from Vue context",
5 "main": "dist/vue-ls.js",
6 "jsnext:main": "src/index.js",
7 "unpkg": "dist/vue-ls.min.js",
8 "files": [
9 "src",
10 "dist/*.js"
11 ],
12 "scripts": {
13 "build": "rollup -c ./build/rollup.config.js --name VueStorage && NODE_ENV=production rollup -c ./build/rollup.config.js --name VueStorage",
14 "test": "NODE_ENV=test nyc ava",
15 "test:browserstack": "node ./build/local.runner.js -c ./build/nightwatch.browserstack.config.js",
16 "test:browserstack:chrome": "npm run test:browserstack --env bstack_chrome",
17 "test:browserstack:edge": "npm run test:browserstack --env bstack_edge",
18 "test:browserstack:firefox": "npm run test:browserstack --env bstack_firefox,bstack_firefox_osx",
19 "test:browserstack:safari": "npm run test:browserstack --env bstack_safari",
20 "test:browserstack:all": "npm run test:browserstack -- --env bstack_safari,bstack_chrome,bstack_firefox,bstack_firefox_osx,bstack_edge",
21 "test:e2e": "gulp test --env chrome",
22 "test:unit": "karma start build/karma.dev.config.js",
23 "test:sauce": "karma start build/karma.sauce.config.js",
24 "lint": "eslint ./",
25 "report": "npm test && nyc report --reporter=html",
26 "coveralls": "nyc report --reporter=text-lcov | coveralls",
27 "codecov": "nyc report --reporter=lcovonly && codecov -t $CODECOV_TOKEN",
28 "postinstall": "opencollective-postinstall || true"
29 },
30 "keywords": [
31 "storage",
32 "localstorage",
33 "local-storage",
34 "vue-localstorage",
35 "vuejs-localstorage",
36 "vue-local-storage",
37 "vuejs-local-storage",
38 "memorystroage",
39 "sessionstorage",
40 "session-storage",
41 "vue-sessionstorage",
42 "vuejs-sessionstorage",
43 "vue-session-storage",
44 "vuejs-session-storage",
45 "memory-stroage",
46 "vue-ls",
47 "vue",
48 "vuejs",
49 "vue-plugin",
50 "watch",
51 "es6-modules"
52 ],
53 "repository": {
54 "type": "git",
55 "url": "git+https://github.com/RobinCK/vue-ls.git"
56 },
57 "author": "Igor Ognichenko <ognichenko.igor@gmail.com>",
58 "bugs": {
59 "url": "https://github.com/RobinCK/vue-ls/issues"
60 },
61 "engines": {
62 "node": ">=6.11.5"
63 },
64 "homepage": "https://github.com/RobinCK/vue-ls#readme",
65 "license": "MIT",
66 "devDependencies": {
67 "@ava/babel": "^1.0.1",
68 "@babel/core": "^7.12.10",
69 "@babel/plugin-syntax-dynamic-import": "^7.8.3",
70 "@babel/plugin-transform-modules-commonjs": "^7.12.1",
71 "@babel/plugin-transform-runtime": "^7.12.10",
72 "@babel/polyfill": "^7.12.1",
73 "@babel/preset-env": "^7.12.11",
74 "@babel/register": "^7.12.10",
75 "@babel/runtime": "^7.12.5",
76 "ava": "^3.15.0",
77 "babel-eslint": "^10.1.0",
78 "babel-loader": "^8.2.2",
79 "browserstack-local": "^1.4.8",
80 "chromedriver": "^87.0.5",
81 "connect": "^3.7.0",
82 "coveralls": "^3.1.0",
83 "eslint": "^7.17.0",
84 "eslint-config-airbnb-base": "^14.2.1",
85 "eslint-plugin-import": "^2.22.1",
86 "eslint-plugin-node": "^11.1.0",
87 "get-gulp-args": "^0.0.1",
88 "gulp": "4.0.2",
89 "gulp-nightwatch": "1.1.0",
90 "gulp-util": "^3.0.8",
91 "husky": "^4.3.7",
92 "jasmine": "^3.6.3",
93 "jasmine-core": "^3.6.0",
94 "karma": "^5.2.3",
95 "karma-chrome-launcher": "^3.1.0",
96 "karma-jasmine": "^4.0.1",
97 "karma-sauce-launcher": "^4.3.4",
98 "karma-webpack": "^4.0.2",
99 "mock-browser": "^0.92.14",
100 "nightwatch": "^1.5.1",
101 "nyc": "^15.1.0",
102 "rollup": "^2.36.1",
103 "rollup-plugin-babel": "^4.4.0",
104 "rollup-plugin-local-resolve": "^1.0.7",
105 "rollup-plugin-uglify": "^6.0.4",
106 "selenium-server": "^3.14.0",
107 "serve-static": "^1.14.1",
108 "trim-right": "^1.0.1",
109 "vue": "^2.6.12",
110 "webpack": "^4.29.3"
111 },
112 "semistandard": {
113 "ignore": [
114 "node_modules",
115 "bower_components",
116 "build",
117 "dist",
118 "test"
119 ]
120 },
121 "ava": {
122 "babel": {
123 "extensions": [
124 "js"
125 ]
126 },
127 "tap": true,
128 "files": [
129 "./test/unit/ava/*.js"
130 ],
131 "require": [
132 "@babel/register",
133 "@babel/polyfill"
134 ]
135 },
136 "dependencies": {
137 "opencollective-postinstall": "^2.0.2"
138 },
139 "collective": {
140 "type": "opencollective",
141 "url": "https://opencollective.com/vue-ls"
142 }
143}