-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
75 lines (75 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
74
75
{
"name": "vue-hotspot",
"version": "2.0.3",
"description": "Hotspot component for Vue.js.",
"author": "James Wang",
"scripts": {
"serve": "vue-cli-service serve",
"build": "cross-env NODE_ENV=production rollup -c",
"lint": "vue-cli-service lint",
"demo": "vue-cli-service build",
"pub": "sh ./publish.sh",
"test:unit": "vue-cli-service test:unit --coverage && codecov",
"test": "vue-cli-service test:unit"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"main": "dist/vue-hotspot.js",
"module": "components/VueHotspot.vue",
"dependencies": {
"@vue/composition-api": "^0.3.2",
"core-js": "^2.6.5",
"vue": "^2.6.10"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.0.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.0.0",
"husky": "^4.3.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"rollup": "^1.20.3",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-vue": "^5.0.1",
"standard": "^14.1.0",
"vue-template-compiler": "^2.6.10"
},
"bugs": {
"url": "https://github.com/jamesxwang/vue-hotspot/issues"
},
"homepage": "https://github.com/jamesxwang/vue-hotspot#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm run test"
}
},
"keywords": [
"vue",
"hotspot",
"component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jamesxwang/vue-hotspot.git"
}
}