-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.16 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
{
"name": "ht",
"version": "0.1.0",
"private": true,
"description": "Hightouch CLI",
"author": "Daishan Peng @StrongMonkey",
"homepage": "https://github.com/hightouchio/cli",
"bin": {
"ht": "scripts/run"
},
"main": "dist/index.js",
"repository": "hightouchio/cli",
"files": [
"/scripts",
"/dist"
],
"dependencies": {
"@oclif/core": "^1",
"cli-ux": "^6.0.9",
"got": "~11.8.3",
"javascript-time-ago": "^2.3.13",
"timeago": "^1.6.7"
},
"devDependencies": {
"@oclif/test": "^2",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.0.1",
"prettier": "^2.2.1",
"globby": "^11",
"mocha": "^9",
"oclif": "^2",
"pkg": "5.8.0",
"shx": "^0.3.3",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"resolutions": {
"pkg-fetch": "3.4.2"
},
"oclif": {
"bin": "ht",
"dirname": "ht",
"commands": "./dist/commands"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "npm run build && oclif manifest",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"readme": "oclif readme",
"pkg": "pkg --output ./dist/artifacts/ht . && ./scripts/sha256sum.sh"
},
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/hightouchio/cli/issues",
"keywords": [
"oclif"
],
"types": "module",
"pkg": {
"scripts": "./dist/**/*.js",
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
]
}
}