-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "react-validify",
"version": "6.1.3",
"description": "Form validation made easy",
"main": "dist/index.js",
"module": "lib/index.js",
"directories": {
"example": "example"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.test.js"
],
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"collectCoverageFrom": [
"src/**"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"collectCoverage": false
},
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --extensions \".ts,.tsx,.js\" && NODE_ENV=production npx babel --plugins @babel/plugin-transform-modules-commonjs src --out-dir dist --extensions \".ts,.tsx,.js\"",
"test": "jest",
"check-types": "tsc --noEmit",
"export-types": "tsc --emitDeclarationOnly --outDir dist && tsc --emitDeclarationOnly --outDir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/navjobs/validify.git"
},
"keywords": [
"form",
"validation"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/navjobs/validify/issues"
},
"homepage": "https://github.com/navjobs/validify#readme",
"dependencies": {},
"peerDependencies": {
"lodash": ">=4.0",
"react": ">=16.8"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/react": "^17.0.3",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"typescript": "^4.2.3"
}
}