-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
105 lines (105 loc) · 2.65 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "verte",
"version": "0.0.12",
"description": "Vue Color Picker",
"main": "dist/verte.js",
"style": "dist/verte.css",
"module": "dist/verte.esm.js",
"scripts": {
"build": "node scripts/build",
"dev": "node scripts/watch",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "bash scripts/deploy.sh",
"test": "jest",
"lint": "eslint --fix src scripts test",
"release": "bash scripts/release.sh",
"cover": "jest --coverage"
},
"files": [
"dist/*.js",
"dist/*.css"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.53",
"@babel/preset-env": "^7.0.0-beta.53",
"@commitlint/cli": "^7.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.4.0",
"browser-sync": "^2.24.5",
"chalk": "^2.3.2",
"eslint": "^5.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.5.0",
"filesize": "^3.6.1",
"fs": "0.0.1-security",
"gzip-size": "^5.0.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.1",
"jest-canvas-mock": "^1.1.0",
"lint-staged": "^7.2.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.2",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"pug-plain-loader": "^1.0.0",
"rollup": "^0.62.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-vue": "^4.3.1",
"sass-loader": "^7.0.3",
"stylus": "^0.54.5",
"vue-jest": "^2.6.0",
"vue-template-compiler": "^2.5.16",
"vuepress": "^0.12.0"
},
"author": "",
"license": "MIT",
"dependencies": {
"color-fns": "^0.0.10"
},
"jest": {
"setupFiles": [
"<rootDir>/test/setupTests.js",
"jest-canvas-mock"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/**.{js,vue}",
"!**/node_modules/**"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
}
}