This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 3.05 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
{
"name": "vuex-flash",
"version": "1.0.0",
"description": "Flash Message Component for Vue.js within Vuex",
"main": "dist/vuex-flash.min.js",
"scripts": {
"dev": "node build/dev-server.js",
"build": "node build/build.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit",
"lint": "eslint --ext .js src test/unit/**/*.js test/e2e/**/*.js",
"lint-fix": "eslint --fix --ext .js src test/unit/** test/e2e/**",
"coverall": "cat ./test/unit/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"codecov": "cat ./test/unit/coverage/lcov.info | ./node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmed-dinar/vuex-flash.git"
},
"keywords": [
"vue",
"vuejs",
"vuex",
"flash",
"vuex-flash",
"vue-flash",
"flash-message"
],
"author": "Ahmed Dinar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmed-dinar/vuex-flash/issues"
},
"homepage": "https://github.com/ahmed-dinar/vuex-flash#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^4.0.2",
"codecov": "^2.2.0",
"connect-history-api-fallback": "^1.3.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"es6-promise": "^4.1.1",
"eslint": "^4.1.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-vue": "^2.1.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.15.3",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.29.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"mocha-generators": "^2.0.0",
"mocha-loader": "^1.1.1",
"opn": "^5.1.0",
"ora": "^1.3.0",
"phantomjs-prebuilt": "^2.1.14",
"rimraf": "^2.6.1",
"sinon": "^2.3.6",
"sinon-chai": "^2.11.0",
"vue": "^2.3.4",
"vue-loader": "^13.0.0",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.3.4",
"vuex": "^2.3.1",
"vuex-persistedstate": "^2.0.0",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "^2.5.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}