-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-native-onboard",
"version": "0.0.0-development",
"description": "Delightful and fully customizable onboarding swiper for React Native.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./lib"
],
"scripts": {
"build": "rm -rf ./lib && npx tsc",
"clean": "rm -rf ./lib",
"test": "jest --no-watchman",
"semantic-release": "semantic-release",
"lint": "eslint --fix --ext .ts,.tsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrigadeHQ/react-native-onboard.git"
},
"keywords": [
"React",
"Native",
"React-Native",
"Component",
"Onboarding",
"Tutorial",
"Intro",
"Swiper",
"Welcome",
"Introduction",
"Instructions"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@types/jest": "^23.3.1",
"@types/react-native": "^0.67.3",
"eslint-config-backpacker-react-ts": "^0.3.0",
"jest": "^29.3.1",
"jest-config": "^29.3.1",
"jest-expo": "^47.0.1",
"lint-staged": "^13.0.0",
"metro-react-native-babel-preset": "^0.71.0",
"prettier": "^2.4.1",
"react-native": "^0.70.6",
"semantic-release": "^19.0.3",
"typescript": "^4.9.4"
},
"release": {
"branches": [
"main"
]
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"author": "Frigade Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/FrigadeHQ/react-native-onboard/issues"
},
"homepage": "https://github.com/FrigadeHQ/react-native-onboard#readme"
}