-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "vue-color-picker-board",
"version": "1.1.1",
"description": "Vue color picker component for humans",
"main": "dist/vue-color-picker-board.js",
"scripts": {
"start": "rimraf ./dist && webpack --watch --config ./webpack.config.js",
"test": "jest"
},
"author": "Shlomi Nissan (Betamark)",
"license": "MIT",
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/shlomnissan/vue-color-picker-board"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"clean-css": "^4.2.1",
"css-loader": "^2.1.1",
"jest": "^24.8.0",
"js-yaml": "^3.13.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"rimraf": "^2.6.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"vue": "^2.6.10",
"vue-html-loader": "^1.2.4",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-style-loader": "^2.0.3",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-merge": "^4.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}