This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.26 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": "@xmartlabs/rnx-cli",
"version": "1.2.0",
"private": false,
"description": "rnx-cli CLI",
"types": "build/types/types.d.ts",
"bin": {
"rnx-cli": "bin/rnx-cli"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "copyfiles -u 1 \"./src/templates/**/*\" ./build",
"build": "yarn clean-build && yarn compile && yarn copy-templates",
"prepublishOnly": "yarn build",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"test": "jest",
"watch": "jest --watch",
"snap-update": "jest --updateSnapshot",
"coverage": "jest --coverage",
"publish:release": "npm publish",
"semantic-release": "semantic-release"
},
"files": [
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"keywords": [
"React-Native",
"CLI",
"React",
"Mobile",
"Xmartlabs"
],
"author": {
"name": "Nicolás Hernández",
"email": "[email protected]",
"url": "https://github.com/nicoache1"
},
"repository": {
"type": "git",
"url": "https://github.com/xmartlabs/rnx-cli"
},
"license": "MIT",
"dependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"chalk": "4.1.2",
"execa": "5.1.1",
"figlet": "1.5.2",
"gluegun": "5.1.2",
"pino": "8.7.0",
"pino-pretty": "9.1.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "26.0.20",
"@types/node": "18.11.6",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"copyfiles": "2.4.1",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"semantic-release": "19.0.5",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"resolutions": {
"ejs": "3.1.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
}
}