-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "react-native-app-intro-slider",
"version": "4.0.4",
"description": "Simple and configurable app introduction slider for react native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write src",
"test": "echo 'no tests yet'",
"prepublishOnly": "yarn run build && yarn run lint && yarn run format",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacse/react-native-app-intro-slider.git"
},
"keywords": [
"swiper",
"App",
"Intro",
"ios",
"android",
"react-component",
"react-native",
"slider"
],
"author": "Jacob Lauritzen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacse/react-native-app-intro-slider/issues"
},
"homepage": "https://github.com/jacse/react-native-app-intro-slider",
"files": [
"dist/**/*"
],
"devDependencies": {
"@react-native-community/eslint-config": "^1.0.0",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.31",
"@types/react-native": "^0.62.0",
"@types/react-test-renderer": "16.9.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"prettier": "^2.0.2",
"react-test-renderer": "16.11.0",
"typescript": "^3.8.3"
}
}