forked from hashgit/react-native-linkedin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.53 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
74
75
76
77
78
79
80
81
82
83
{
"name": "react-native-linkedin",
"version": "2.1.1",
"main": "node_modules/expo/AppEntry.js",
"types": "lib/index.d.ts",
"description": "React-Native LinkedIn, a simple LinkedIn login library for React-Native with WebView and Modal",
"repository": "https://github.com/xcarpentier/react-native-linkedin.git",
"author": "Xavier Carpentier <[email protected]> (https://xaviercarpentier.com/)",
"bugs": {
"url": "https://github.com/xcarpentier/react-native-linkedin/issues"
},
"homepage": "https://github.com/xcarpentier/react-native-linkedin",
"license": "MIT",
"scripts": {
"start": "yarn config:dev && expo start",
"build": "rm -rf lib/ && node_modules/.bin/tsc && cp -rf ./src/assets ./lib",
"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\"'",
"test": "TZ=Europe/Paris jest --no-watchman",
"lint": "tslint --project .",
"tsc": "node_modules/.bin/tsc --noEmit",
"cleaning": "rm -rf node_modules && rm -f yarn.lock && yarn install && watchman watch-del-all && rm -fr $TMPDIR/react-*",
"prepublishOnly": "yarn lint && yarn build && yarn test && yarn config:npm",
"postpublish": "yarn config:dev"
},
"keywords": [
"react-native",
"react-native-linkedin",
"linkedin"
],
"dependencies": {
"query-string": "6.8.3",
"ramda": "0.26.1",
"uuid": "3.3.3",
"react-native-webview": "7.0.5"
},
"devDependencies": {
"@types/jest": "24.0.17",
"@types/react": "16.9.4",
"@types/react-native": "0.60.17",
"@types/uuid": "^3.4.4",
"@types/ramda": "^0.25.47",
"babel-jest": "24.9.0",
"babel-preset-react-native": "^4.0.0",
"babel-preset-expo": "^7.0.0",
"expo": "^35.0.0",
"husky": "3.0.8",
"json": "^9.0.6",
"jest-expo": "^35.0.0",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-test-renderer": "16.8.3",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.4.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-webview": "*"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"testMatch": [
"**/*.test.ts?(x)"
]
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn tsc && yarn test"
}
}
}