-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.33 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
{
"name": "reactive-validation",
"version": "2.0.6",
"author": "lamantin",
"description": "Simple power validation logic for your apps",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lamantin-group/reactive-validation.git"
},
"keywords": [
"react-native",
"validation"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm version patch && yarn build",
"start": "react-native start",
"doctor": "npm run doctor:remove && npm run doctor:install",
"doctor:remove": "rm -rf node_modules && rm -f package-lock.json && rm -rf example/node_modules && rm -f example/package-lock.json && rm -f example/ios/Podfile.lock && rm -rf example/ios/Pods && rm -rf example/ios/build",
"doctor:install": "yarn install && cd example && yarn install && cd ios && pod install",
"git:reset": "rm -rf .git && git init && git add -A && git commit -m 'Initial commit'",
"android": "cd example && npm run android",
"ios": "cd example && npm run ios",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"peerDependencies": {
"react": "^16.9.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.6.0",
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.12",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "6.10.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.0.1",
"prettier-eslint": "^9.0.0",
"react": "16.8.6",
"react-native": "0.60.4",
"ts-node": "^8.6.2",
"typescript": "^3.4.3"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.6.0"
}
}