-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·83 lines (83 loc) · 2.16 KB
/
package.json
File metadata and controls
executable file
·83 lines (83 loc) · 2.16 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
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
{
"name": "@markkup/react-native-fields",
"version": "1.1.2",
"description": "Cross-platform input fields for React Native",
"author": "Dave Weaver",
"bugs": {
"url": "https://github.com/markkup/react-native-fields/issues"
},
"dependencies": {},
"homepage": "https://github.com/markkup/react-native-fields#readme",
"keywords": [
"react",
"native",
"fields",
"input"
],
"license": "MIT",
"main": "dist/index.js",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/markkup/react-native-fields.git"
},
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"build:demo": "npm run build && rimraf ./demo/node_modules/@markkup/react-native-fields/dist && mv dist ./demo/node_modules/@markkup/react-native-fields/dist",
"compile": "tsc",
"lint": "tslint -p tsconfig.json",
"clean": "rimraf dist",
"test": "npm run build && npm run jest",
"jest": "TZ=America/New_York jest --silent --runInBand",
"jest:watch": "jest --watchAll",
"prepare": "npm run compile"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.8",
"@types/react-native-vector-icons": "^6.4.1",
"@types/react-test-renderer": "^16.9.0",
"jest": "^24.9.0",
"react": "^16.9.0",
"react-native": "^0.60.5",
"react-test-renderer": "^16.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
},
"peerDependencies": {
"react": ">= 15.0",
"react-native": ">= 0.48.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"\\.(ts|tsx)$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native)"
],
"testMatch": [
"**/__tests__/**/*.test.ts?(x)"
],
"globals": {
"ts-jest": {
"tsConfig": {
"jsx": "react"
}
},
"__TEST__": true
}
}
}