-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
{
"name": "vue-iotacss",
"version": "1.1.0",
"description": "Stateless Vue Components for iotaCSS.",
"main": "lib/index.js",
"scripts": {
"test": "jest --watch",
"dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotacss/vue-iotacss.git"
},
"keywords": [
"vue",
"iotacss",
"harby",
"bem",
"oocss",
"itcss"
],
"author": "Dimitris Psaropoulos <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iotacss/vue-iotacss/issues"
},
"homepage": "https://github.com/iotacss/vue-iotacss#readme",
"dependencies": {
"vue": "^2.3.4",
"vue-loader": "^13.0.1",
"vue-types": "^1.0.1"
},
"devDependencies": {
"avoriaz": "^2.4.3",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"browser-env": "^3.1.0",
"css-loader": "^0.28.3",
"file-loader": "^0.11.2",
"iotacss": "^1.1.1",
"jest": "^20.0.4",
"jest-vue-preprocessor": "^1.0.1",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"require-extension-hooks": "^0.3.0",
"require-extension-hooks-babel": "^0.1.1",
"require-extension-hooks-vue": "^0.4.0",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.1",
"vue-node": "^1.1.1",
"vue-template-compiler": "^2.3.4",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"jest": {
"moduleNameMapper": {
"src/components/([^\\.]*)$": "<rootDir>/lib/$1.vue",
"^vue$": "vue/dist/vue.common.js",
"src/([^\\.]*)$": "<rootDir>/src/$1.vue",
"(.*)/(.*)$": "$1/$2.vue"
},
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}