-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
{
"name": "react-constraint-validation",
"version": "0.2.1",
"description": "Constraint validation for react as HOC",
"repository": "pstrh/react-constraint-validation",
"keywords": [
"react-constraint-validation",
"react",
"html constraint validation",
"validation",
"react-dom",
"formik",
"form",
"forms",
"higher order component",
"hoc"
],
"author": "pstrh",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/react-constraint-validation.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint"
},
"prettier": {
"printWidth": 80,
"semi": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/react": "16.9.3",
"@types/react-dom": "16.9.1",
"@types/react-test-renderer": "16.9.0",
"husky": "3.0.5",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-test-renderer": "16.9.0",
"tsdx": "0.9.2",
"tslib": "1.10.0",
"typescript": "3.6.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}