-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
71 lines (71 loc) · 1.87 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-swatches",
"version": "2.1.1",
"description": "Help the user picking beautiful colors!",
"author": "Diego Jara <[email protected]>",
"private": false,
"license": "MIT",
"keywords": [
"vuejs",
"color-picker",
"color",
"picker"
],
"bugs": {
"url": "https://github.com/saintplay/vue-swatches/issues"
},
"homepage": "https://saintplay.github.io/vue-swatches",
"main": "dist/vue-swatches.umd.min.js",
"unpkg": "dist/vue-swatches.umd.min.js",
"jsnext:main": "dist/vue-swatches.umd.min.js",
"files": [
"dist",
"src",
"nuxt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/saintplay/vue-swatches.git"
},
"scripts": {
"serve": "vue-cli-service serve demo/main.js",
"build": "vue-cli-service build --target lib --name vue-swatches src/VSwatches.vue",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@melmacaluso/vue-modal": "^2.1.0",
"@vue/cli-plugin-babel": "^4.3.0",
"@vue/cli-plugin-eslint": "^4.3.0",
"@vue/cli-plugin-unit-jest": "^4.3.0",
"@vue/cli-service": "^4.3.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.4",
"coveralls": "^3.0.11",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"is-hex-color": "^0.0.1",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rgb": "^0.1.0",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.4.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}