forked from mnafees/lerminal-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "lerminal",
"description": "Learn how to use the terminal",
"version": "1.0.0",
"author": "Mohammed Nafees @mnafees",
"bin": {
"lerminal": "./bin/run"
},
"bugs": "https://github.com/mnafees/lerminal/issues",
"dependencies": {
"@oclif/command": "^1.5.10",
"@oclif/config": "^1.12.6",
"@oclif/plugin-help": "^2.1.6",
"chalk": "^2.4.2",
"inquirer": "^6.2.2",
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/test": "^1.2.4",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.1.7",
"@types/chalk": "^2.2.0",
"@types/inquirer": "0.0.43",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.26",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/mnafees/lerminal",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "lerminal"
},
"repository": "mnafees/lerminal",
"scripts": {
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}