-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.55 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.55 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
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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@earthranger/react-native-jsonforms-formatter",
"version": "2.0.0-beta.23",
"description": "Converts JTD into JSON Schema ",
"main": "./dist/bundle.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"browser": "./dist/bundle.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/bundle.js"
},
"./v1": {
"types": "./dist/v1.d.ts",
"import": "./dist/v1.js",
"require": "./dist/bundle.js"
},
"./v2": {
"types": "./dist/v2/index.d.ts",
"import": "./dist/v2/index.js",
"require": "./dist/bundle.js"
}
},
"react-native": "./dist/bundle.js",
"scripts": {
"preinstall": "git config core.hooksPath .githooks",
"build": "npm run clean && npm run build:lib && npm run build:bundle",
"build:lib": "tsc",
"build:bundle": "npx webpack",
"clean": "rm -rf dist",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:test": "eslint 'test/**/*.{ts,tsx}'",
"test": "jest test/.*\\.test\\..* --coverage",
"typecheck": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PADAS/react-native-jsonforms-formatter.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"json",
"schema",
"forms",
"JTD",
"UI",
"formatter",
"validator",
"validation"
],
"author": "EarthRanger",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PADAS/react-native-jsonforms-formatter/issues"
},
"homepage": "https://github.com/PADAS/react-native-jsonforms-formatter#readme",
"jest": {
"setupFilesAfterEnv": [
"jest-extended/all"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es)"
]
},
"dependencies": {
"@jsonforms/core": "^3.0.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.1",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.12.5",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-jest": "^29.5.0",
"eslint": "^8.52.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}