-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "@getluko/mobile-release-process",
"version": "0.0.9",
"author": "luko",
"description": "Scripts to automate git flow used by mobile team to release",
"main": "build/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/GetLuko/mobile-release-process"
},
"bin": {
"mobile-release-process": "./build/src/cli.js"
},
"scripts": {
"test": "jest",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"prettier": "prettier --write 'src/**/*.ts'",
"build": "rimraf ./build && tsc --build --force",
"mobile-release-process": "./build/src/cli.js"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"enquirer": "2.3.6",
"esm": "3.2.25",
"listr": "0.14.3",
"lodash.curry": "4.1.1",
"lodash.get": "4.4.2",
"lodash.hasin": "4.5.2",
"lodash.isarray": "4.0.0",
"lodash.isempty": "4.4.0",
"lodash.isnil": "4.0.0",
"lodash.isstring": "4.0.1",
"lodash.isundefined": "3.0.1",
"lodash.overevery": "4.7.0",
"lodash.oversome": "4.7.0"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@types/jest": "27.4.1",
"@types/listr": "0.14.4",
"@types/lodash": "4.14.182",
"@types/lodash.curry": "4.1.7",
"@types/lodash.get": "4.4.7",
"@types/lodash.hasin": "4.5.7",
"@types/lodash.isarray": "4.0.7",
"@types/lodash.isempty": "4.4.7",
"@types/lodash.isnil": "4.0.7",
"@types/lodash.isstring": "4.0.7",
"@types/lodash.isundefined": "3.0.7",
"@types/lodash.overevery": "4.7.7",
"@types/lodash.oversome": "4.7.7",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"babel-jest": "27.5.1",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.1",
"jest": "27.5.1",
"prettier": "2.6.0",
"ts-node": "10.7.0",
"typescript": "4.6.2"
},
"files": [
"bin/",
"build/"
]
}