forked from elastic/synthetics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.12 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
{
"name": "@elastic/synthetics",
"version": "1.0.0",
"description": "Elastic synthetic monitoring agent",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"prepublish": "npm run clean && npm run build",
"build": "tsc",
"build:locations": "sh utils/update_locations.sh",
"watch": "tsc -w",
"lint": "eslint . --rulesdir utils/eslint-rules",
"lint:fix": "npm run lint -- --fix",
"test": "npm run test:unit && npm run test:browser-service",
"test:unit": "jest",
"test:browser-service": "WSENDPOINT=ws://localhost:9322 npm run test:unit",
"coverage": "jest --coverage"
},
"bin": {
"@elastic/synthetics": "dist/cli.js",
"elastic-synthetics": "dist/cli.js"
},
"files": [
"dist",
"src",
"templates"
],
"lint-staged": {
"*.{js,ts}": [
"npm run lint:fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "",
"license": "MIT",
"dependencies": {
"archiver": "^5.3.1",
"commander": "^10.0.1",
"deepmerge": "^4.3.1",
"enquirer": "^2.3.6",
"esbuild": "^0.16.10",
"expect": "^28.1.3",
"http-proxy": "^1.18.1",
"kleur": "^4.1.5",
"micromatch": "^4.0.5",
"pirates": "^4.0.5",
"playwright-chromium": "=1.32.3",
"playwright-core": "=1.32.3",
"semver": "^7.5.0",
"sharp": "^0.32.0",
"snakecase-keys": "^4.0.1",
"sonic-boom": "^3.3.0",
"source-map-support": "^0.5.21",
"typescript": "^4.8.4",
"undici": "^5.21.2",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.11.59",
"@types/sharp": "^0.28.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"husky": "^4.3.6",
"is-positive": "3.1.0",
"jest": "^28.1.3",
"jest-junit": "^15.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"unzipper": "^0.10.11"
},
"engines": {
"node": ">=18.12.0"
}
}