forked from elastic/synthetics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "@elastic/synthetics",
"version": "0.0.1-alpha.1",
"description": "Elastic synthetic monitoring agent",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --rulesdir utils/eslint-rules",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"coverage": "jest --coverage",
"docker": "docker build . -t heartbeat-synthetics"
},
"bin": {
"elastic-synthetics": "dist/cli.js"
},
"files": [
"dist",
"src"
],
"lint-staged": {
"*.{js,ts}": [
"npm run lint:fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^6.0.0",
"kleur": "^4.1.1",
"playwright-chromium": "^1.5.2",
"snakecase-keys": "^3.2.0",
"sonic-boom": "^1.1.0",
"source-map-support": "^0.5.19",
"totalist": "^2.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.14.2",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"husky": "^4.3.0",
"jest": "^26.4.1",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.3.0"
}
}