This repository has been archived by the owner on Oct 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "@btfuse/core",
"version": "0.8.0",
"description": "A native-first framework for building hybdrid web-native applications",
"main": "lib/api.js",
"types": "lib/api.d.ts",
"homepage": "https://github.com/btfuse/fuse",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"Fuse",
"breautek",
"native",
"mobile",
"app",
"application",
"development"
],
"scripts": {
"build": "npm run lint && tsc",
"unit:js": "jest",
"lint": "eslint .",
"test": "npm run lint && npm run unit:js",
"e2e:ios": "echo \"Error: no iOS E2E test specified\" && exit 0",
"e2e:android": "echo \"Error: no android E2E test specified\" && exit 0",
"preversion": "npm test",
"version": "tsc",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/btfuse/fuse"
},
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "29.5.12",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"eslint-plugin-tsdoc": "0.3.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"dependencies": {
"tslib": "2.6.3",
"uuid": "10.0.0"
}
}