-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 2.55 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
{
"name": "nuxtjsbrasil.github.io",
"homepage": "https://nuxtjsbrasil.github.io",
"version": "0.0.1",
"title": "NUXT Brasil",
"description": "{{ Site da comunidade NUXT Brasil }}",
"main": "index.js",
"scripts": {
"dev": "nuxt dev",
"clean": "rimraf .nuxt && rimraf dist",
"build": "NODE_ENV=production nuxt build",
"prestart": "npm run build",
"start": "nuxt start",
"generate": "npm run clean && NODE_ENV=production nuxt generate",
"deploy": "npm run generate && push-dir --dir=dist --branch=gh-pages --cleanup",
"lint": "eslint --ext .js,.vue --fix --ignore-path .gitignore .",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxtjsbrasil/nuxtjsbrasil.github.io.git"
},
"keywords": [
"site",
"nuxt",
"brasil",
"vue",
"comunity"
],
"author": "Comunidade Nuxt Brasil (https://github.com/nuxtjsbrasil)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nuxtjsbrasil/nuxtjsbrasil.github.io/issues"
},
"dependencies": {
"axios": "^0.18.0",
"nuxt-edge": "^2.0.0-25579690.716c04f"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.24",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.7.1",
"husky": "^0.14.3",
"jest": "^23.5.0",
"jest-serializer-vue": "^2.0.2",
"push-dir": "^0.4.1",
"rimraf": "^2.6.2",
"rupture": "^0.7.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-jest": "^2.6.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1",
"^~/(.*)$": "<rootDir>/$1"
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**"
],
"coverageReporters": [
"html",
"text-summary"
],
"snapshotSerializers": [
"jest-serializer-vue"
]
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}