-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "@ubersetz/cli",
"version": "1.4.10",
"description": "",
"main": "dist/index.js",
"bin": {
"ubersetz": "dist/index.js"
},
"scripts": {
"prepare": "npm run build",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"build": "rm -r ./dist; tsc && chmod +x dist/index.js",
"type-check": "tsc --noEmit",
"lint": "eslint --quiet --ext .ts --ext .tsx ."
},
"keywords": [],
"author": "Max Nowack <max.nowack@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/ignore-walk": "^3.0.1",
"@types/listr": "^0.14.2",
"@types/lodash.sortby": "^4.7.6",
"@types/node": "^14.14.12",
"@types/p-map": "^2.0.0",
"@types/rc": "^1.1.0",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-sort-class-members": "^1.9.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"global-dirs": "^2.1.0",
"ignore-walk": "^3.0.3",
"listr": "^0.14.3",
"lodash.sortby": "^4.7.0",
"p-filter": "^2.1.0",
"p-map": "^4.0.0",
"p-queue": "^6.6.2",
"rc": "^1.2.8",
"rxjs": "^6.6.3",
"yargs": "^17.2.1"
}
}