-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.78 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
{
"name": "visualise-elastic-profile",
"description": "Visualise results from Profile API of ElasticSearch on the command line",
"version": "1.2.2",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"author": {
"name": "Henri Normak",
"email": "henri.normak@gmail.com"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/henrinormak/visualise-elastic-profile",
"bugs": {
"url": "https://github.com/henrinormak/visualise-elastic-profile/issues"
},
"keywords": [
"elastic",
"elasticsearch",
"profile",
"visualise"
],
"repository": {
"type": "git",
"url": "https://github.com/henrinormak/visualise-elastic-profile.git"
},
"scripts": {
"clean": "yarn rimraf build",
"build": "tsc",
"cli": "yarn build && node ./build/cli.js",
"test": "yarn jest",
"release": "yarn clean && yarn build && yarn test && standard-version",
"publish-release": "git push --follow-tags origin main && npm publish"
},
"files": [
"build/*"
],
"bin": {
"visualise-elastic-profile": "build/cli.js"
},
"dependencies": {
"chalk": "^4.0.0",
"clime": "^0.5.14",
"runtypes": "^6.5.0",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/"
],
"testMatch": [
"**/__tests__/*.(js|ts)"
],
"testEnvironment": "node"
}
}