-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "rn-verifcode",
"version": "0.0.1",
"description": "React-Native component to input confirmation code for both Android and IOS",
"repository": {
"type": "git",
"url": "git+https://github.com/xcarpentier/rn-verifcode.git"
},
"keywords": [
"React-Native",
"TextInput",
"SMS code",
"verification"
],
"main": "node_modules/expo/AppEntry.js",
"types": "lib/index.d.ts",
"author": "Xavier Carpentier <xcapetir@gmail.com> (https://xaviercarpentier.com/)",
"license": "MIT",
"private": false,
"files": [
"lib/**/*"
],
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-typescript": "^7.1.0",
"@types/react": "^16.7.17",
"@types/react-native": "^0.57.19",
"@types/ramda": "^0.25.47",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-expo": "^5.0.0",
"expo": "^32.0.0",
"json": "^9.0.6",
"prettier": "1.15.3",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.2"
},
"dependencies": {
"prop-types": "15.6.2",
"ramda": "0.26.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"scripts": {
"config:dev": "json -I -f package.json -e 'this.main=\"node_modules/expo/AppEntry.js\"'",
"config:npm": "json -I -f package.json -e 'this.main=\"lib/index.js\"'",
"build": "rm -rf lib/ && tsc",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "yarn lint && yarn build && yarn config:npm",
"postpublish": "yarn config:dev"
}
}