-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 KB
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": "@adobe/metrics-sampler",
"version": "1.0.5",
"main": "index.js",
"description": "Library for collecting and summarizing metrics",
"author": {
"name": "Adobe Inc."
},
"repository": "adobe/node-metrics-sampler",
"dependencies": {
"datalib": "^1.9.3",
"flat": "^5.0.2",
"interval-promise": "^1.4.0"
},
"overrides": {
"request": {
"form-data": "^2.5.4"
}
},
"devDependencies": {
"@adobe/eslint-config-asset-compute": "^1.3.1",
"@semantic-release/git": "^9.0.0",
"codecov": "^3.8.1",
"conventional-changelog-eslint": "^3.0.9",
"fs-extra": "^9.1.0",
"license-checker": "^25.0.1",
"mocha": "^8.3.2",
"nock": "^12.0.3",
"nyc": "^15.1.0",
"semantic-release": "^17.3.0"
},
"license": "Apache-2.0",
"keywords": [
"metrics",
"sampling",
"sampler",
"adobe",
"node"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "nyc mocha --recursive --exit",
"posttest": "eslint ./ && license-checker --summary",
"beautify": "eslint ./ --fix",
"semantic-release": "semantic-release"
}
}