-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
105 lines (105 loc) · 2.62 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
99
100
101
102
103
104
105
{
"name": "egg-exporter",
"version": "1.1.3",
"description": "Prometheus exporter plugin for Egg.js",
"main": "app.js",
"eggPlugin": {
"name": "exporter",
"optionalDependencies": [
"rpc"
]
},
"files": [
"app.js",
"lib",
"app",
"config",
"agent.js"
],
"scripts": {
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "sh test/init.sh && TEST_TIMEOUT=10000 egg-bin cov",
"lint": "eslint .",
"ci": "npm run autod -- --check && egg-bin pkgfiles --check && npm run lint && npm run cov",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod",
"release": "semantic-release -b master",
"prerelease": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/highso-fe/egg-exporter.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"egg",
"prometheus",
"metrics"
],
"author": "psyduck <wjiangl.id@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/highso-fe/egg-exporter/issues"
},
"homepage": "https://github.com/highso-fe/egg-exporter#readme",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"await-first": "^1.0.0",
"cluster-client": "^3.0.1",
"connection": "^1.0.0",
"mz-modules": "^2.1.0",
"prom-client": "^11.5.0",
"sdk-base": "^3.6.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.5",
"autod": "^3.1.0",
"autod-egg": "^1.1.0",
"await-event": "^2.1.0",
"egg": "^2.22.2",
"egg-bin": "^4.13.0",
"egg-mock": "^3.23.1",
"egg-rpc-base": "^1.3.1",
"egg-rpc-generator": "^1.3.1",
"eslint": "^5.16.0",
"eslint-config-egg": "^7.4.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"pedding": "^1.1.0",
"prettier": "^1.19.1",
"semantic-release": "^15.13.31",
"urllib": "^2.34.0",
"webstorm-disable-index": "^1.2.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "."
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(🤖): ${nextRelease.version}"
}
],
"@semantic-release/github"
]
}
}