-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.49 KB
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
{
"name": "@passbase/react-native-passbase-v3",
"version": "3.6.0",
"description": "Official React-Native wrapper for Passbase SDK.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"podname": "react-native-passbase",
"keywords": [
"react-native",
"rn-passbase",
"react-native-passbase",
"passbase",
"passbase-sdk",
"react native",
"react-native passbase"
],
"author": "Mathias",
"license": "MIT",
"scripts": {
"init:package": "cd example && npm i && npm run install:pods",
"build": "rm -rf dist && tsc -p ./src",
"watch": "npm run build -- -w",
"lint": "npm run lint:ts && npm run lint:kotlin && npm run lint:swift",
"lint:ts": "tslint --fix -p ./src && tslint --fix -p ./example/src",
"lint:kotlin": "cd example/android && ./gradlew ktlintMainSourceSetFormat",
"lint:swift": "cd ios && ../example/ios/Pods/SwiftLint/swiftlint autocorrect && ../example/ios/Pods/SwiftLint/swiftlint",
"ci:build": "cd example && npm i",
"ci:lint": "npm run ci:lint:ts && npm run ci:lint:kotlin && npm run ci:lint:swift",
"ci:lint:ts": "tslint -p ./src && tslint -p ./example/src",
"ci:lint:kotlin": "cd example/android && ./gradlew ktlintMainSourceSetCheck",
"ci:lint:swift": "cd ios && ../example/ios/Pods/SwiftLint/swiftlint",
"ci:compile:android": "cd example/android && ./gradlew compileDebugSources",
"ci:compile:ios": "cd example/ios && export RCT_NO_LAUNCH_PACKAGER=\"true\" && export RCT_NO_BUNDLE=\"true\" && xcodebuild CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=\"NO\" CODE_SIGN_ENTITLEMENTS=\"\" CODE_SIGNING_ALLOWED=\"NO\" -workspace RnPassbaseExample.xcworkspace -configuration Debug -scheme RnPassbaseExample test",
"preversion": "npm run lint && npm run build",
"postversion": "git push && git push --tags"
},
"bugs": {
"url": "https://github.com/passbase/rn-passbase/issues"
},
"homepage": "https://github.com/passbase/rn-passbase#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/passbase/rn-passbase.git"
},
"peerDependencies": {
"@babel/runtime": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react-native": "0.64.1",
"tslint": "5.19.0",
"tslint-config-standard": "8.0.1",
"tslint-react": "4.0.0",
"typescript": "3.5.3"
},
"files": [
"android",
"ios",
"src",
"dist",
".dockerignore",
".editorconfig",
"tslint.json",
"*.md",
"*.podspec",
"LICENSE"
],
"dependencies": {}
}