-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "vue-notifyjs",
"version": "0.4.3",
"description": "Simple notification component for Vue.js",
"repository": {
"url": "cristijora/vue-notifyjs",
"type": "git"
},
"main": "dist/vue-notifyjs.common.js",
"unpkg": "dist/vue-notifyjs",
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "/vue-notifyjs/"
},
"files": [
"dist",
"themes"
],
"scripts": {
"test": "echo 'no tests!' && npm run lint",
"prepublish": "npm run build",
"lint": "xo",
"build": "bili --external=vue --format cjs --format umd --compress --banner --js babel && node-sass themes/ -o themes/",
"build:example": "poi build",
"dev": "poi --port 5000",
"deploy": "npm run build:example && gh-pages -d example/dist"
},
"author": "cristij <[email protected]>",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"vue": "^2.2.0"
},
"devDependencies": {
"babel-preset-vue-app": "^2.0.0",
"bili": "^0.16.0-rc.2",
"bootstrap": "^3.3.7",
"eslint-config-rem": "^3.0.0",
"gh-pages": "^1.0.0",
"node-sass": "^4.7.2",
"poi": "^9.0.2",
"rollup-plugin-babel": "^2.7.1",
"sass-loader": "^6.0.6",
"vue": "^2.3.4",
"vue-github-badge": "^1.0.0",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem/prettier",
"ignores": [
"example/**"
]
},
"babel": {
"presets": [
[
"vue-app",
{
"useBuiltIns": true
}
]
]
}
}