This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "tipsi-ui-kit",
"version": "0.1.1",
"description": "React Native Tipsi custom UI elements",
"main": "src/index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"appium": "appium",
"test:unit": "jest",
"test:e2e:android": "appium-helper --platform=android",
"test:e2e:ios": "appium-helper --platform=ios",
"test:e2e": "npm-run-all test:e2e:*",
"test": "npm-run-all test:*",
"build:android": "scripts/build-android.sh",
"build:ios": "scripts/build-ios.sh",
"build": "npm-run-all build:*",
"ci": ".ci/local-ci.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tipsi/tipsi-ui-kit.git"
},
"keywords": [
"tipsi",
"ui",
"kit",
"react",
"react-native"
],
"author": "Tipsi",
"license": "MIT",
"bugs": {
"url": "https://github.com/tipsi/tipsi-ui-kit/issues"
},
"homepage": "https://github.com/tipsi/tipsi-ui-kit#readme",
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"react-native-vector-icons": "^3.0.0"
},
"devDependencies": {
"appium": "1.6.3",
"babel-eslint": "^7.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.7.1",
"eslint-config-tipsi": "^1.2.0",
"jest": "^18.1.0",
"npm-run-all": "^4.0.0",
"react": "15.4.1",
"react-native": "0.39.2",
"react-native-json-tree": "^0.1.0",
"react-test-renderer": "^15.4.1",
"tape-async": "^2.1.1",
"tipsi-appium-helper": "^1.0.1"
},
"jest": {
"preset": "react-native",
"testRegex": "/__tests__/unit/.*.test.js$"
},
"peerDependencies": {
"react-native": "*"
}
}