-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "@dymantic/vuetilities",
"version": "0.3.4",
"description": "\"A collection of common vue components we tend to reuse\"",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"build": "node_modules/webpack/bin/webpack.js --config webpack.config.js"
},
"keywords": [
"vue"
],
"author": "Michael Joyner",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Dymantic/vuetilities"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.10",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.9",
"jest": "^22.2.1",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"moxios": "^0.4.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"vue": "^2.5.13",
"vue-jest": "^2.0.1",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0"
},
"dependencies": {
"axios": "^0.17.1"
},
"jest": {
"testRegex": "test.js$",
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"mapCoverage": true
}
}