-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "foect",
"version": "0.1.6",
"description": "Simple form validation library for React Native.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "jest"
},
"repository": "git+https://github.com/unexge/foect.git",
"keywords": [
"react",
"react-native",
"form",
"validation"
],
"author": "unexge <unexge@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/unexge/foect/issues"
},
"homepage": "https://github.com/unexge/foect#readme",
"devDependencies": {
"@types/enzyme": "^2.7.6",
"@types/jest": "^19.2.2",
"@types/lodash.isequal": "^4.5.1",
"@types/prop-types": "^15.5.2",
"@types/react": "^15.0.18",
"@types/react-native": "^0.42.9",
"enzyme": "^2.7.1",
"jest": "^19.0.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"ts-jest": "^19.0.2",
"typescript": "^2.2.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"coverageReporters": [
"html",
"text-summary"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"prop-types": "^15.6.0"
}
}