This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.84 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "uniforms-patternfly",
"version": "4.7.9",
"description": "Patternfly forms for uniforms",
"repository": "git@github.com:aerogear/uniforms-patternfly.git",
"author": "Gianluca <gzuccare@redhat.com>",
"license": "Apache-2.0",
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/es5/*.d.ts",
"dist/es5/*.js",
"dist/esm/*.d.ts",
"dist/esm/*.js",
"dist/es6/*.d.ts",
"dist/es6/*.js",
"src/*.ts",
"src/*.tsx"
],
"scripts": {
"build": "tsc --build --incremental tsconfig.build.json",
"buildProd": "tsc --build tsconfig.build.json",
"watch": "tsc --watch --incremental",
"clean": "tsc --build --clean tsconfig.build.json && rimraf dist coverage",
"coverage": "jest --runInBand --coverage",
"lint": "eslint --ext js,ts,tsx src",
"reset": "rimraf dist node_modules",
"release:validate": "./scripts/validateRelease.sh TAG=1.2.3",
"release:publish": "./scripts/publishRelease.sh",
"test": "jest --runInBand",
"install:example": "rimraf ./examples/node_modules/uniforms-patternfly/dist && cp -a ./dist/ ./examples/node_modules/uniforms-patternfly/dist/"
},
"dependencies": {
"classnames": "^2.0.0",
"invariant": "^2.0.0",
"lodash": "^4.0.0",
"tslib": "^2.2.0",
"uniforms": "^3.5.5"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/polyfill": "7.10.4",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@patternfly/react-core": "4.135.0",
"@patternfly/react-icons": "4.11.0",
"@testing-library/react": "10.4.9",
"@types/classnames": "2.2.11",
"@types/enzyme": "3.10.8",
"@types/invariant": "2.2.34",
"@types/jest": "25.2.3",
"@types/lodash": "4.14.168",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "10.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-vazco": "5.2.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-vazco": "1.0.0",
"jest": "25.5.4",
"prettier": "2.2.1",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"rimraf": "2.7.1",
"simpl-schema": "1.10.2",
"ts-jest": "25.5.1",
"ts-node": "8.10.2",
"typescript": "3.8.3",
"uniforms-bridge-simple-schema-2": "^3.5.5"
},
"peerDependencies": {
"react": "^17.0.0 || ^16.8.0",
"@patternfly/react-core": "^4.135.0",
"@patternfly/react-icons": "^4.11.0"
},
"engines": {
"npm": ">=5.0.0"
}
}