-
-
Notifications
You must be signed in to change notification settings - Fork 213
/
package.json
73 lines (73 loc) · 2.11 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
{
"name": "vue-notification",
"description": "Vue.js Notification Library",
"version": "1.3.20",
"author": "euvl",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build:base": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --hide-modules",
"build:ssr": "cross-env NODE_ENV=production webpack --config webpack.config.ssr.js --progress --hide-modules",
"build": "npm run build:base && npm run build:ssr",
"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"
},
"types": "index.d.ts",
"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"
},
"keywords": [
"web",
"front-end",
"vue",
"vuejs",
"notification",
"vue-notification",
"vue-notifications"
],
"devDependencies": {
"avoriaz": "^3.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.7.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.2",
"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.11.0",
"sass-loader": "^5.0.1",
"sinon": "^3.2.0",
"sinon-chai": "^2.12.0",
"velocity-animate": "^1.5.1",
"vue": "^2.0.0",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.0.0",
"webpack": "^2.7.0",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.1"
}
}