-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
143 lines (143 loc) · 4.18 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
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
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "vue-ls",
"version": "4.2.0",
"description": "Vue plugin for work with LocalStorage from Vue context",
"main": "dist/vue-ls.js",
"jsnext:main": "src/index.js",
"unpkg": "dist/vue-ls.min.js",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"build": "rollup -c ./build/rollup.config.js --name VueStorage && NODE_ENV=production rollup -c ./build/rollup.config.js --name VueStorage",
"test": "NODE_ENV=test nyc ava",
"test:browserstack": "node ./build/local.runner.js -c ./build/nightwatch.browserstack.config.js",
"test:browserstack:chrome": "npm run test:browserstack --env bstack_chrome",
"test:browserstack:edge": "npm run test:browserstack --env bstack_edge",
"test:browserstack:firefox": "npm run test:browserstack --env bstack_firefox,bstack_firefox_osx",
"test:browserstack:safari": "npm run test:browserstack --env bstack_safari",
"test:browserstack:all": "npm run test:browserstack -- --env bstack_safari,bstack_chrome,bstack_firefox,bstack_firefox_osx,bstack_edge",
"test:e2e": "gulp test --env chrome",
"test:unit": "karma start build/karma.dev.config.js",
"test:sauce": "karma start build/karma.sauce.config.js",
"lint": "eslint ./",
"report": "npm test && nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"codecov": "nyc report --reporter=lcovonly && codecov -t $CODECOV_TOKEN",
"postinstall": "opencollective-postinstall || true"
},
"keywords": [
"storage",
"localstorage",
"local-storage",
"vue-localstorage",
"vuejs-localstorage",
"vue-local-storage",
"vuejs-local-storage",
"memorystroage",
"sessionstorage",
"session-storage",
"vue-sessionstorage",
"vuejs-sessionstorage",
"vue-session-storage",
"vuejs-session-storage",
"memory-stroage",
"vue-ls",
"vue",
"vuejs",
"vue-plugin",
"watch",
"es6-modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RobinCK/vue-ls.git"
},
"author": "Igor Ognichenko <[email protected]>",
"bugs": {
"url": "https://github.com/RobinCK/vue-ls/issues"
},
"engines": {
"node": ">=6.11.5"
},
"homepage": "https://github.com/RobinCK/vue-ls#readme",
"license": "MIT",
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@babel/runtime": "^7.12.5",
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"browserstack-local": "^1.4.8",
"chromedriver": "^87.0.5",
"connect": "^3.7.0",
"coveralls": "^3.1.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"get-gulp-args": "^0.0.1",
"gulp": "4.0.2",
"gulp-nightwatch": "1.1.0",
"gulp-util": "^3.0.8",
"husky": "^4.3.7",
"jasmine": "^3.6.3",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-sauce-launcher": "^4.3.4",
"karma-webpack": "^4.0.2",
"mock-browser": "^0.92.14",
"nightwatch": "^1.5.1",
"nyc": "^15.1.0",
"rollup": "^2.36.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-uglify": "^6.0.4",
"selenium-server": "^3.14.0",
"serve-static": "^1.14.1",
"trim-right": "^1.0.1",
"vue": "^2.6.12",
"webpack": "^4.29.3"
},
"semistandard": {
"ignore": [
"node_modules",
"bower_components",
"build",
"dist",
"test"
]
},
"ava": {
"babel": {
"extensions": [
"js"
]
},
"tap": true,
"files": [
"./test/unit/ava/*.js"
],
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"dependencies": {
"opencollective-postinstall": "^2.0.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/vue-ls"
}
}