-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "expo-native-dependency-hash",
"version": "3.2.1",
"license": "MIT",
"author": {
"name": "Robert Herber",
"email": "[email protected]",
"url": "https://kingstinct.com"
},
"keywords": [
"react-native",
"expo",
"native",
"ios",
"android",
"kingstinct"
],
"bugs": {
"url": "https://github.com/robertherber/expo-native-dependency-hash/issues"
},
"bin": {
"expo-native-dependency-hash": "cli.js"
},
"files": [
"index.js",
"index.d.ts",
"cli.js"
],
"devDependencies": {
"@expo/config-types": "^49.0.0",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"concurrently": "^8.2.2",
"eslint": "8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "^2.29.0",
"expo": "^49.0.20",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5"
},
"scripts": {
"start": "yarn build && node ./dist/index.js",
"build": "tsc -p tsconfig.build.json",
"test": "jest src",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepublish": "concurrently \"yarn build\" \"yarn lint\" \"yarn test\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"chalk": "4",
"fast-safe-stringify": "^2.1.1",
"yargs": "^17.7.2"
}
}