-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
92 lines (90 loc) · 2.34 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
{
"name": "chucknorris",
"description": "Chuck Norris Jokes built with VueJS + api.chucknorris.io",
"version": "1.0.0",
"license": "MIT",
"author": "Irfan Maulana (https://github.com/mazipan/)",
"private": false,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --color --open",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"lint": "./node_modules/.bin/eslint --ext .js,.vue src test/*.js",
"test": "./node_modules/.bin/jest --coverage",
"dist": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/mazipan/chucknorris.git"
},
"bugs": {
"url": "https://github.com/mazipan/chucknorris/issues"
},
"dependencies": {
"vue": "^2.5.13"
},
"devDependencies": {
"avoriaz": "^6.3.0",
"axios": "0.17.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.7",
"compression-webpack-plugin": "^1.1.2",
"eslint": "^4.13.1",
"eslint-plugin-vue": "3.13.0",
"file-loader": "^1.1.6",
"jest": "^22.0.3",
"jest-vue-preprocessor": "^1.3.1",
"node-sass": "^4.7.2",
"octicons": "7.0.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"vue-lazyload": "1.1.4",
"vue-loader": "^13.6.1",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.13",
"vue-script2": "2.0.1",
"vue-google-adsense": "1.0.2",
"vue-social-sharing": "2.3.3",
"vuex": "3.0.1",
"vue-i18n": "7.3.3",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"babel": {
"presets": [
"env"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
]
},
"eslintIgnore": [
"dist/*.js",
"build/*.js",
"config/*.js",
"dist",
"node_modules"
],
"jest": {
"coverageDirectory": "test/coverage",
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js",
"src/([^\\.]*)$": "<rootDir>/src/$1.vue"
},
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}