This repository was archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.04 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.04 KB
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": "kmdr",
"version": "1.2.18",
"description": "The CLI tool for learning commands from your terminal",
"main": "dist/index.js",
"scripts": {
"build": "tsc --moduleResolution node && cp -r src/files dist/",
"build:version": "ts-node scripts/version.ts",
"test": "jest --verbose",
"start:prod": "NODE_ENV=production ts-node src/bin.ts",
"start:dev": "NODE_ENV=development KMDR_API_ENDPOINT=http://localhost:8081 KMDR_WEBAPP_ENDPOINT=http://localhost:3000 ts-node src/bin.ts"
},
"bin": {
"kmdr": "dist/bin.js"
},
"keywords": [
"shell",
"bash",
"terminal"
],
"repository": {
"type": "git",
"url": "https://github.com/kommandr/kmdr-cli.git"
},
"author": "Eddie Ramirez <eddie@kmdr.sh> (https://github.com/kommandr)",
"homepage": "https://kmdr.sh",
"license": "MIT",
"devDependencies": {
"@types/eventsource": "^1.1.5",
"@types/jest": "^24.9.1",
"@types/node": "^12.19.14",
"@types/node-fetch": "^2.5.8",
"jest": "^24.8.0",
"kmdr-parser": "^2.6.1",
"prettier": "^1.17.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.9.7"
},
"contributors": [
{
"name": "Ianeta Hutchinson",
"email": "ianeta.hutch@gmail.com"
}
],
"jest": {
"testPathIgnorePatterns": [
"dist/",
"build/",
"src/",
"node_modules/"
],
"testEnvironment": "node",
"testRegex": "tests/.*\\.(ts|tsx|js)$",
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
2345
]
}
}
}
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"cross-fetch": "^3.0.6",
"enquirer": "^2.3.6",
"eventsource": "^1.0.7",
"graphql-request": "^2.0.0",
"kmdr-ast": "3.5.3",
"node-fetch": "^2.6.1",
"ora": "^4.1.1"
},
"bundledDependencies": [
"cross-fetch"
]
}