-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.59 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
{
"name": "vue-webble",
"version": "0.1.1",
"description": "A Web Bluetooth UI component for Vue.js",
"main": "dist/vue-webble.umd.js",
"module": "dist/vue-webble.esm.js",
"unpkg": "dist/vue-webble.min.js",
"browser": {
"./sfc": "src/components/VueWebble.vue"
},
"files": [
"sample/*",
"dist/*",
"src/*",
"*.json",
"*.js"
],
"homepage": "https://github.com/hanhdt/vue-webble",
"bugs": "https://github.com/hanhdt/vue-webble/issues",
"repository": {
"type": "git",
"url": "https://github.com/hanhdt/vue-webble.git"
},
"author": {
"name": "Hanh D. TRAN",
"email": "[email protected]",
"url": "https://hanhdt.github.io"
},
"license": "MIT",
"keywords": [
"vue",
"web bluetooth",
"web ble",
"bluetooth ble",
"vue component",
"js",
"javascript"
],
"publishConfig": {
"registry":"https://npm.pkg.github.com"
},
"scripts": {
"dev": "vue-cli-service serve ./sample/src/main.js --open",
"build": "vue-cli-service build --target lib --name vue-webble ./src/index.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:unpkg": "rollup --config build/rollup.config.unpkg.js",
"build:sample": "vue-cli-service build ./sample/src/main.js",
"lint": "vue-cli-service lint --fix",
"test:unit": "jest --clearCache && vue-cli-service test:unit"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/runtime": "^7.12.13",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-plugin-unit-jest": "^4.5.6",
"@vue/cli-service": "^4.5.11",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.1.3",
"babel-core": "~7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.6.3",
"core-js": "^3.8.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^6.2.2",
"identity-obj-proxy": "^3.0.0",
"js-beautify": "^1.13.0",
"node-sass": "^4.14.1",
"rollup": "^1.10.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-vue": "^5.1.9",
"sass-loader": "^10.1.1",
"uglify-es": "^3.3.9",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}