-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@earthranger/react-native-jsonforms-formatter",
"version": "1.0.2",
"type": "module",
"description": "Converts JTD into JSON Schema ",
"main": "./dist/bundle.js",
"scripts": {
"preinstall": "git config core.hooksPath .githooks",
"build": "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"
}
}