-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "@bonniernews/gcp-push-metrics",
"version": "3.2.1",
"description": "Push custom metrics to Google Cloud Monitoring.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha",
"posttest": "npm run lint",
"lint": "eslint .",
"prepack": "rollup index.js --format cjs --file index.cjs"
},
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BonnierNews/gcp-push-metrics.git"
},
"author": "Bonnier News",
"license": "MIT",
"bugs": {
"url": "https://github.com/BonnierNews/gcp-push-metrics/issues"
},
"homepage": "https://github.com/BonnierNews/gcp-push-metrics#readme",
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.15.0",
"eslint-config-exp": "^0.2.0",
"mocha": "^10.0.0",
"nock": "^13.2.4",
"rollup": "^2.72.1",
"sinon": "^14.0.0"
},
"dependencies": {
"@google-cloud/monitoring": "^3.0.5"
},
"files": [
"README.md",
"COPYING",
"CHANGELOG.md",
"package-lock.json",
"package.json",
"index.js",
"index.cjs",
"lib/"
]
}