forked from awslabs/aws-embedded-metrics-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "aws-embedded-metrics",
"version": "2.0.4",
"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 <[email protected]>"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/faker": "^4.1.5",
"@types/jest": "^26.0.22",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"aws-sdk": "^2.551.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"jest": "^26.6.3",
"node-notifier": ">=8.0.1",
"npm-pack-zip": "^1.2.7",
"prettier": "^1.19.1",
"ts-jest": "^26.5.4",
"typescript": "^3.8.0",
"y18n": ">=4.0.1"
},
"files": [
"lib/**/*"
],
"volta": {
"node": "10.16.0"
}
}