-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "lepont",
"version": "0.11.4",
"description": "A native <-> browser (webview) bridge library for react-native",
"main": "index.js",
"types": "./types",
"files": [
"index.js",
"browser",
"mock",
"dist",
"types",
"src"
],
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"clean": "rimraf dist types",
"prepublish": "npm run clean && npm run dist",
"fmt": "prettier --write src/*.ts *.json *.js",
"dist": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kt3k/lepont.git"
},
"keywords": [
"react-native",
"native-bridge"
],
"author": "Yoshiya Hinosawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/kt3k/lepont/issues"
},
"homepage": "https://github.com/kt3k/lepont#readme",
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.1",
"@types/react": "^18.2.39",
"codecov": "^3.6.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2"
}
}