UNPKG

4.87 kBJSONView Raw
1{
2 "name": "vue-ls",
3 "version": "3.2.1",
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": "node_modules/.bin/rollup -c ./build/rollup.config.js --name VueStorage && NODE_ENV=production node_modules/.bin/rollup -c ./build/rollup.config.js --name VueStorage",
14 "test": "NODE_ENV=test node_modules/.bin/nyc node_modules/.bin/ava",
15 "test:browserstack": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_chrome_50,bstack_chrome_57,bstack_ie_9,bstack_ie_11,bstack_edge_13,bstack_edge_14,bstack_firefox_40,bstack_firefox_52,bstack_safari_8,bstack_safari_10",
16 "test:browserstack:chrome": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_chrome_50,bstack_chrome_57",
17 "test:browserstack:ie": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_ie_9,bstack_ie_11",
18 "test:browserstack:edge": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_edge_13,bstack_edge_14",
19 "test:browserstack:firefox": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_firefox_40,bstack_firefox_52",
20 "test:browserstack:safari": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_safari_8,bstack_safari_10",
21 "test:phantomjs": "RUN_ON_BSTACK=false node_modules/.bin/gulp test --env phantomjs",
22 "test:e2e": "RUN_ON_BSTACK=false node_modules/.bin/gulp test --env chrome",
23 "test:unit": "node_modules/.bin/karma start build/karma.dev.config.js",
24 "test:sauce": "npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2 && npm run sauce -- 3 && npm run sauce -- 4 && npm run sauce -- 5",
25 "sauce": "node_modules/.bin/karma start build/karma.sauce.config.js",
26 "lint": "node_modules/.bin/eslint ./",
27 "report": "npm test && node_modules/.bin/nyc report --reporter=html",
28 "coveralls": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
29 "codecov": "./node_modules/.bin/nyc report --reporter=lcovonly && codecov -t $CODECOV_TOKEN"
30 },
31 "keywords": [
32 "storage",
33 "localstorage",
34 "local-storage",
35 "vue-localstorage",
36 "vuejs-localstorage",
37 "vue-local-storage",
38 "vuejs-local-storage",
39 "memorystroage",
40 "sessionstorage",
41 "session-storage",
42 "vue-sessionstorage",
43 "vuejs-sessionstorage",
44 "vue-session-storage",
45 "vuejs-session-storage",
46 "memory-stroage",
47 "vue-ls",
48 "vue",
49 "vuejs",
50 "vue-plugin",
51 "watch",
52 "es6-modules"
53 ],
54 "repository": {
55 "type": "git",
56 "url": "git+https://github.com/RobinCK/vue-ls.git"
57 },
58 "author": "Igor Ognichenko <ognichenko.igor@gmail.com>",
59 "bugs": {
60 "url": "https://github.com/RobinCK/vue-ls/issues"
61 },
62 "engines": {
63 "node": ">=6.11.5"
64 },
65 "homepage": "https://github.com/RobinCK/vue-ls#readme",
66 "license": "MIT",
67 "devDependencies": {
68 "@babel/core": "^7.2.2",
69 "@babel/plugin-syntax-dynamic-import": "^7.2.0",
70 "@babel/plugin-transform-modules-commonjs": "^7.2.0",
71 "@babel/plugin-transform-runtime": "^7.2.0",
72 "@babel/polyfill": "^7.2.5",
73 "@babel/preset-env": "^7.3.1",
74 "@babel/register": "^7.0.0",
75 "@babel/runtime": "^7.3.1",
76 "ava": "^1.1.0",
77 "babel-eslint": "^10.0.0",
78 "babel-loader": "^8.0.5",
79 "browserstack-automate": "^1.0.2",
80 "chromedriver": "^2.45.0",
81 "connect": "^3.6.6",
82 "coveralls": "^3.0.2",
83 "eslint": "^5.12.1",
84 "eslint-config-airbnb-base": "^13.1.0",
85 "eslint-plugin-import": "^2.15.0",
86 "eslint-plugin-node": "^8.0.1",
87 "get-gulp-args": "^0.0.1",
88 "gulp": "4.0.0",
89 "gulp-nightwatch": "^1.1.0",
90 "gulp-util": "^3.0.8",
91 "husky": "^1.3.1",
92 "jasmine": "^3.3.1",
93 "jasmine-core": "^3.2.1",
94 "karma": "^4.0.0",
95 "karma-chrome-launcher": "^2.2.0",
96 "karma-jasmine": "^2.0.0",
97 "karma-sauce-launcher": "^2.0.2",
98 "karma-webpack": "^3.0.2",
99 "mock-browser": "^0.92.14",
100 "nightwatch": "^1.0.18",
101 "nyc": "^13.0.1",
102 "phantomjs": "^2.1.7",
103 "remove": "^0.1.5",
104 "rollup": "^1.1.2",
105 "rollup-plugin-babel": "^4.3.2",
106 "rollup-plugin-local-resolve": "^1.0.7",
107 "rollup-plugin-uglify": "^6.0.2",
108 "selenium-server": "^3.14.0",
109 "serve-static": "^1.13.2",
110 "vue": "^2.5.22",
111 "webpack": "^4.29.0"
112 },
113 "semistandard": {
114 "ignore": [
115 "node_modules",
116 "bower_components",
117 "build",
118 "dist",
119 "test"
120 ]
121 },
122 "ava": {
123 "babel": {
124 "extensions": [
125 "js"
126 ]
127 },
128 "tap": true,
129 "files": [
130 "./test/unit/ava/*.js"
131 ],
132 "require": [
133 "@babel/register",
134 "@babel/polyfill"
135 ]
136 }
137}