forked from euvl/vue-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "vue-notification",
"description": "Vue.js 2 Notification library",
"version": "1.3.6",
"author": "euvl <[email protected]>",
"private": false,
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"unit": "cross-env BABEL_ENV=test karma start test/unit/setup/karma.conf.js --single-run",
"unit:watch": "cross-env BABEL_ENV=test karma start test/unit/setup/karma.conf.js --watch",
"test": "npm run unit"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/euvl/vue-notification.git"
},
"bugs": {
"url": "https://github.com/euvl/vue-notification/issues"
},
"license": "MIT",
"peerDependencies": {
"vue": "^2.0.0"
},
"dependencies": {
"velocity-animate": "^1.5.0"
},
"keywords": [
"vue",
"notification"
],
"devDependencies": {
"avoriaz": "^3.2.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-latest": "^6.0.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.4.0",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.4",
"mocha": "^3.5.0",
"node-sass": "^4.5.0",
"sass-loader": "^5.0.1",
"sinon": "^3.2.0",
"sinon-chai": "^2.12.0",
"vue": "^2.0.0",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.0.0",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.7.1"
}
}