-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "vue-svg-map",
"version": "1.2.0",
"description": "A set of Vue.js components to display an interactive SVG map",
"author": "Victor Cazanave <victor.cazanave@gmail.com>",
"keywords": [
"vue",
"component",
"svg",
"interactive",
"map",
"checkbox",
"radiobutton"
],
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.min.js",
"browser": {
"./sfc/svg-map": "src/components/svg-map.vue",
"./sfc/checkbox-svg-map": "src/components/checkbox-svg-map.vue",
"./sfc/radio-svg-map": "src/components/radio-svg-map.vue"
},
"files": [
"/src/components/*.vue",
"/dist"
],
"scripts": {
"build:umd": "rollup --config rollup.config.js --format umd --file dist/index.umd.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/index.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format iife --file dist/index.min.js",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"lint": "eslint src/ demo/src/ --ext .js,.vue",
"test": "jest",
"prepublish": "npm run lint && npm run test && npm run build"
},
"homepage": "https://github.com/VictorCazanave/vue-svg-map#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/VictorCazanave/vue-svg-map.git"
},
"bugs": {
"url": "https://github.com/VictorCazanave/vue-svg-map/issues"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.30",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"jest": "^24.9.0",
"rollup": "^1.26.3",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-scss": "^1.0.2",
"rollup-plugin-vue": "5.1.1",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.0.0"
}
}