-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.02 KB
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
{
"name": "react-native-testsmith",
"version": "0.1.2",
"description": "Local-first React Native testing CLI for Jest and Testing Library",
"license": "MIT",
"type": "module",
"bin": {
"react-native-testsmith": "dist/bin.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/bin.ts",
"lint": "eslint .",
"test": "npm run build && node --test tests/**/*.test.mjs",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"react-native",
"jest",
"testing-library",
"cli",
"test-generator",
"rn"
],
"dependencies": {
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"commander": "^14.0.1",
"fast-glob": "^3.3.3",
"kleur": "^4.1.5"
},
"devDependencies": {
"@types/babel__traverse": "^7.28.0",
"@types/node": "^24.8.1",
"eslint": "^9.38.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}