-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 2.47 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "gopack-cli",
"version": "0.0.1",
"description": "Gopack CLI instant package downloader for Go programming",
"main": "index.js",
"files": [
"/dist/**"
],
"bin": {
"gopack": "./dist/bin/command.js"
},
"scripts": {
"clean": "rimraf dist",
"compiler": "npm run clean && tsc --pretty",
"build": "npm run compiler",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier src/**/*.ts --write",
"lint:fix": "npm run format && npm run lint"
},
"author": {
"name": "Restu Wahyu Saputra",
"email": "restuwahyu13@gmail.com",
"url": "https://github.com/restuwahyu13"
},
"repository": {
"url": "https://github.com/restuwahyu13/gopack"
},
"homepage": "https://github.com/restuwahyu13/gopack#readme",
"bugs": {
"url": "https://github.com/restuwahyu13/gopack/issues"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"cli",
"package downloader",
"golang",
"go",
"gopack",
"gopack-cli",
"command",
"node",
"nodejs",
"node_modules",
"javascript",
"typescript"
],
"dependencies": {
"axios": "^0.21.3",
"chalk": "^4.1.1",
"clear": "^0.1.0",
"cli-progress": "^3.9.0",
"cli-spinner": "^0.2.10",
"colors": "^1.4.0",
"commander": "^8.0.0",
"consola": "^2.15.3",
"figlet": "^1.5.0",
"inquirer": "^8.1.1",
"node-notifier": "^10.0.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/clear": "^0.1.2",
"@types/cli-progress": "^3.9.2",
"@types/cli-spinner": "^0.2.1",
"@types/colors": "^1.2.1",
"@types/commander": "^2.12.2",
"@types/consola": "^2.2.5",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^7.3.3",
"@types/jest": "^27.0.1",
"@types/node": "^15.0.1",
"@types/node-notifier": "^8.0.1",
"@types/shelljs": "^0.8.9",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
}
}