-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.13 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.13 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
{
"name": "fcheat-cli",
"version": "1.1.1",
"description": "Fabulous cheat sheet",
"homepage": "https://github.com/urbanisierung/fcheat",
"repository": {
"type": "git",
"url": "https://github.com/urbanisierung/fcheat"
},
"main": "cli.ts",
"bin": {
"fcheat": "dist/cli.js"
},
"scripts": {
"start": "ts-node ./src/cli.ts",
"build": "tsc --p tsconfig.json",
"dist": "node dist/cli.js",
"test": "jest"
},
"author": {
"name": "Adam Urban",
"email": "adam.urban@gmail.com",
"url": "http://www.adamurban.de"
},
"keywords": [
"cli-app",
"cli",
"fcheat",
"fcheat-cli",
"cheatsheets"
],
"license": "MIT",
"dependencies": {
"@types/node": "^13.9.1",
"canny-edge-detector": "^1.0.0",
"chalk": "^3.0.0",
"clipboardy": "^2.2.0",
"dotenv": "^8.2.0",
"inquirer": "^7.1.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"meow": "^6.0.1"
},
"devDependencies": {
"@types/jasmine": "^3.5.9",
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"nyc": "^15.0.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}