-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.72 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
{
"name": "@cknow/nuxt-modular",
"version": "0.0.0-semantically-released",
"description": "Nuxt modular management",
"keywords": [
"nuxt",
"nuxtjs",
"module",
"modules",
"modular"
],
"homepage": "https://github.com/cknow/nuxt-modular",
"bugs": {
"url": "https://github.com/cknow/nuxt-modular/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Ricardo Gobbo de Souza",
"email": "[email protected]",
"role": "Developer"
},
"files": [
"src/"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cknow/nuxt-modular.git"
},
"scripts": {
"commit": "commit",
"coverage": "jest --coverage",
"lint": "eslint src/ test/ --ext .js,.vue",
"precoverage": "rimraf coverage/",
"pretest": "npm run lint",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"test": "npm run coverage",
"watch": "jest --watch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@nuxt/common": "^2.3.4",
"consola": "^2.3.0",
"glob": "^7.1.3"
},
"devDependencies": {
"@cknow/eslint-config": "^3.11.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt-cli": "^7.2.1",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-vue": "^5.0.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"nuxt-edge": "latest",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=8",
"npm": ">=3"
},
"private": false,
"publishConfig": {
"access": "public"
}
}