-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 912 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 912 Bytes
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
{
"name": "react-form-validation-context",
"version": "2.1.6",
"description": "A lightweight react form validation library for functional programming.",
"main": "dist/index.js",
"repository": "git@github.com:dave-nicholas/react-form-validation-context.git",
"author": "Dave Nicholas <davenicholasuk@gmail.com>",
"keywords": [
"validation",
"react",
"context",
"functional",
"typescript",
"forms"
],
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"test": "tsc && jest"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.9",
"jest": "^23.4.2",
"typescript": "^3.1.3"
},
"dependencies": {
"react": "^16.4.1"
},
"peerDependencies": {
"react": "^16.4.1"
},
"jest": {
"verbose": true,
"testURL": "http://localhost"
}
}