Skip to content

Commit 39c9bab

Browse files
author
Javier Diaz
committed
build(deps): new package json
1 parent 0305bdd commit 39c9bab

File tree

2 files changed

+5976
-0
lines changed

2 files changed

+5976
-0
lines changed

package.json

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"name": "vue-status-indicator",
3+
"version": "1.2.0",
4+
"description": "A template for create a Vue Plugin with Rollup",
5+
"license": "MIT",
6+
"private": false,
7+
"plugin": {
8+
"name": "VueStatusIndicator",
9+
"entryFile": "./index.js"
10+
},
11+
"author": {
12+
"name": "Javier Diaz Chamorro",
13+
"email": "hello@coderdiaz.me",
14+
"url": "https://github.com/coderdiaz"
15+
},
16+
"scripts": {
17+
"build": "rimraf dist && rollup -c --environment BUILD:production",
18+
"prepare": "yarn lint && yarn test:unit && yarn build",
19+
"lint": "eslint -c .eslintrc.js . --ext .js,.vue",
20+
"test:unit": "jest -c"
21+
},
22+
"style": "dist/vue-status-indicator.css",
23+
"main": "dist/vue-status-indicator.cjs.js",
24+
"module": "dist/vue-status-indicator.esm.js",
25+
"unpkg": "dist/vue-status-indicator.js",
26+
"jsdelivr": "dist/vue-status-indicator.js",
27+
"cdn": "dist/vue-status-indicator.js",
28+
"files": [
29+
"dist"
30+
],
31+
"repository": {
32+
"type": "git",
33+
"url": "git+https://github.com/coderdiaz/vue-status-indicator.git"
34+
},
35+
"bugs": {
36+
"url": "https://github.com/coderdiaz/vue-status-indicator/issues"
37+
},
38+
"keywords": [
39+
"vue",
40+
"vuejs",
41+
"vue-component",
42+
"component",
43+
"vue.js",
44+
"status",
45+
"indicator",
46+
"dot",
47+
"color dot",
48+
"status dot",
49+
"status indicator",
50+
"pulse",
51+
"pulse dot",
52+
"animation"
53+
],
54+
"devDependencies": {
55+
"@vue/test-utils": "^1.0.0-beta.29",
56+
"babel-core": "^6.26.3",
57+
"babel-eslint": "^10.0.2",
58+
"babel-jest": "^24.8.0",
59+
"babel-preset-env": "^1.7.0",
60+
"eslint": "^6.0.1",
61+
"eslint-config-airbnb-base": "^13.2.0",
62+
"eslint-plugin-import": "^2.18.0",
63+
"eslint-plugin-vue": "^5.2.3",
64+
"jest": "^24.8.0",
65+
"jest-serializer-vue": "^2.0.2",
66+
"jest-transform-stub": "^2.0.0",
67+
"rimraf": "^2.6.3",
68+
"rollup": "^1.16.3",
69+
"rollup-plugin-commonjs": "^10.0.1",
70+
"rollup-plugin-css-only": "^1.0.0",
71+
"rollup-plugin-node-resolve": "^5.2.0",
72+
"rollup-plugin-terser": "^5.0.0",
73+
"rollup-plugin-vue": "^5.0.1",
74+
"vue-jest": "^3.0.4",
75+
"vue-template-compiler": "^2.6.10"
76+
},
77+
"dependencies": {
78+
"vue": "^2.6.10"
79+
}
80+
}

0 commit comments

Comments
 (0)