-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "vuex-iframe-sync",
"amdName": "IframeSync",
"version": "1.4.5",
"description": "Vuex state synchronization between iframe/window",
"main": "dist/vuex-iframe-sync.js",
"module": "dist/vuex-iframe-sync.es.js",
"jsnext:main": "dist/vuex-iframe-sync.es.js",
"umd:main": "dist/vuex-iframe-sync.umd.js",
"scripts": {
"dev": "webpack-dev-server --open --config ./examples/with-webpack/webpack.dev.conf.js",
"dev:simple": "webpack-dev-server --open --config ./examples/simple/webpack.config.js",
"build": "rimraf dist && microbundle --external all",
"build:docs": "webpack --config ./examples/with-webpack/webpack.prod.conf.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/L-Chris/vuex-iframe-sync.git"
},
"keywords": [
"vuex",
"iframe",
"sync"
],
"author": "l-chris",
"license": "MIT",
"bugs": {
"url": "https://github.com/L-Chris/vuex-iframe-sync/issues"
},
"homepage": "https://github.com/L-Chris/vuex-iframe-sync#readme",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.10",
"html-webpack-plugin": "^3.0.6",
"jest": "^22.4.2",
"microbundle": "^0.4.4",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"vue-loader": "^14.2.1",
"vue-template-compiler": "^2.5.14",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"vue": "^2.5.14",
"vuex": "^3.0.1"
}
}