-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
74 lines (74 loc) · 2.36 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
{
"name": "vuex-toast",
"version": "0.1.3",
"author": "katashin",
"description": "Simple toast notification using Vuex",
"keywords": [
"UI",
"Flux",
"Vuex",
"Vue",
"toast"
],
"license": "MIT",
"main": "dist/vuex-toast.cjs.js",
"files": [
"dist"
],
"homepage": "https://github.com/ktsn/vuex-toast",
"bugs": "https://github.com/ktsn/vuex-toast/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/vuex-toast.git"
},
"scripts": {
"prepublishOnly": "npm run flow && npm run lint && npm run build",
"build": "npm run build:cjs && npm run build:dev && npm run build:prod",
"build:cjs": "rollup -c rollup.config.js -f cjs -o dist/vuex-toast.cjs.js",
"build:dev": "cross-env NODE_ENV=development rollup -c rollup.config.js -f umd -o dist/vuex-toast.js",
"build:prod": "cross-env NODE_ENV=production rollup -c rollup.config.js -f umd | uglifyjs -mc warnings=false --comments -o dist/vuex-toast.min.js",
"build:example": "cd examples && webpack",
"dev:example": "cd examples && webpack-dev-server --inline --hot",
"test": "npm run flow && npm run lint",
"flow": "flow check",
"lint": "eslint --ext .js,.vue src test flow example",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-power-assert": "^2.0.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"eslint": "^4.17.0",
"eslint-config-ktsn": "^1.0.3",
"eslint-plugin-flowtype": "^2.44.0",
"eslint-plugin-html": "^4.0.2",
"flow-bin": "^0.65.0",
"node-sass": "^4.7.2",
"postcss": "^6.0.18",
"power-assert": "^1.4.4",
"rollup": "^0.56.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-vue": "^3.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"uglifyjs": "^2.4.11",
"vue": "^2.5.13",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.13",
"vuex": "^3.0.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"peerDependencies": {
"vue": "^2.0.0",
"vuex": "^2.0.0 || ^3.0.0"
}
}