-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "aws-embedded-metrics",
"version": "4.2.0",
"description": "AWS Embedded Metrics Client Library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/aws-embedded-metrics-node.git"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "jest --runInBand --detectOpenHandles --config jestconfig.json",
"integ": "./bin/run-integ-tests.sh",
"exec-integ": "jest --config jestconfig.integ.json",
"watch": "npm run test -- --watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"fix-lint": "npm run format && eslint --fix \"{src,test}/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format"
},
"keywords": [],
"author": "Amazon Web Services",
"contributors": [
"Jared Nance <jarnance@amazon.com>",
"Mark Kuhn <kuhnmar@amazon.com>"
],
"license": "Apache-2.0",
"dependencies": {
"@datastructures-js/heap": "^4.0.2"
},
"devDependencies": {
"@aws-sdk/client-cloudwatch": "^3.437.0",
"@faker-js/faker": "^7.5.0",
"@types/faker": "^4.1.5",
"@types/jest": "^26.0.22",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"node-notifier": ">=8.0.1",
"npm-pack-zip": "^1.3.0",
"prettier": "^2.7.1",
"ts-jest": "^29.1.5",
"typescript": "^4.8.2",
"y18n": ">=4.0.1"
},
"files": [
"lib/**/*"
],
"volta": {
"node": "16.16.0"
}
}