mirror of
https://github.com/zhigang1992/tipsi-stripe.git
synced 2026-06-12 17:28:29 +08:00
Improvements: * improved test for PaymentCardTextField component * added Spoiler component and testID util in example project * updated root and example project structure * created build scripts * added tipsi eslint config * other small improvements
30 lines
817 B
JSON
30 lines
817 B
JSON
{
|
|
"name": "example",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "node node_modules/react-native/local-cli/cli.js start",
|
|
"appium": "appium",
|
|
"configure": "scripts/configure.sh",
|
|
"build:android": "scripts/build-android.sh",
|
|
"build:ios": "scripts/build-ios.sh",
|
|
"build": "npm-run-all build:*",
|
|
"test:android": "appium-helper --platform android",
|
|
"test:ios": "appium-helper --platform ios",
|
|
"test": "npm-run-all test:*"
|
|
},
|
|
"dependencies": {
|
|
"react": "~15.4.2",
|
|
"react-addons-shallow-compare": "~15.4.2",
|
|
"react-native": "0.40.0",
|
|
"react-native-tab-view": "0.0.37",
|
|
"tipsi-stripe": "../"
|
|
},
|
|
"devDependencies": {
|
|
"appium": "1.6.3",
|
|
"npm-run-all": "^3.1.1",
|
|
"tape-async": "^2.1.1",
|
|
"tipsi-appium-helper": "1.2.0"
|
|
}
|
|
}
|