-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 1.89 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
{
"name": "egg-nacos",
"version": "2.0.0",
"description": "",
"eggPlugin": {
"name": "nacos"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin"
],
"dependencies": {
"nacos": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"autod": "^3.1.0",
"autod-egg": "^1.0.0",
"egg": "^2.22.2",
"egg-bin": "^4.13.0",
"egg-ci": "^1.12.0",
"egg-mock": "^3.23.1",
"eslint": "^6.0.1",
"eslint-config-egg": "^7.4.1",
"eslint-friendly-formatter": "^4.0.1",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"standard-version": "^6.0.1",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"release": "standard-version",
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint --format 'node_modules/eslint-friendly-formatter' .",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod"
},
"files": [
"config",
"agent.js",
"lib",
"app.js"
],
"ci": {
"version": "8, 9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sqlwwx/egg-nacos.git"
},
"bugs": {
"url": "https://github.com/sqlwwx/egg-nacos/issues"
},
"homepage": "https://github.com/sqlwwx/egg-nacos#readme",
"author": "sqlwwx <wwx_2012@live.com> (http://wiki.lab.wuweixing.com)",
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": [
"eslint --format 'node_modules/eslint-friendly-formatter' --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}