-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
{
"name": "@apitree/apitree-cli-example",
"version": "0.1.0-alpha.1",
"description": "CLI Example",
"keywords": [
"nodejs",
"javascript",
"typescript",
"yargs"
],
"homepage": "https://github.com/ApiTreeCZ/apitree-cli-example#readme",
"author": "ApiTree s.r.o.",
"license": "ISC",
"bugs": {
"url": "https://github.com/ApiTreeCZ/apitree-cli-example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApiTreeCZ/apitree-cli-example.git"
},
"files": [
"lib/**/*"
],
"main": "./lib/index.js",
"bin": {
"at-example": "./lib/index.js"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll"
},
"dependencies": {
"chalk": "4.0.0",
"figlet": "1.3.0",
"yargs": "15.3.1"
},
"devDependencies": {
"@types/figlet": "1.2.0",
"@types/jest": "25.2.1",
"@types/node": "13.13.0",
"@types/yargs": "15.0.4",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"jest": "25.3.0",
"lint-staged": "10.1.6",
"prettier": "2.0.4",
"rimraf": "3.0.2",
"ts-jest": "25.4.0",
"ts-node": "8.8.2",
"typescript": "3.8.3"
}
}