-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
86 lines (86 loc) · 2.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@gorhom/sticky-item",
"version": "2.1.1",
"description": "An interactive sticky item inspired by Facebook Stories.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index.ts",
"files": [
"src",
"lib"
],
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/gorhom/react-native-sticky-item",
"author": "Mo Gorhom (https://gorhom.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorhom/react-native-sticky-item/issues"
},
"homepage": "https://github.com/gorhom/react-native-sticky-item#readme",
"scripts": {
"typescript": "tsc --skipLibCheck --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build && yarn copy-dts && yarn delete-dts.js",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript",
"delete-dts.js": "find ./lib/commonjs -name '*.d.js*' -delete && find ./lib/module -name '*.d.js*' -delete",
"release": "release-it",
"example": "yarn --cwd example",
"pods": "cd example/ios && node -e \"process.exit(require('os').platform() === 'darwin')\" || pod install",
"bootstrap": "yarn example && yarn && yarn pods"
},
"dependencies": {
"abs-svg-path": "^0.1.1",
"normalize-svg-path": "^1.1.0",
"parse-svg-path": "^0.1.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.1",
"@types/react": "^17.0.13",
"@types/react-native": "^0.64.10",
"auto-changelog": "^2.3.0",
"copyfiles": "^2.4.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"prettier": "^2.3.2",
"react": "~17.0.1",
"react-native": "~0.64.2",
"react-native-builder-bob": "^0.18.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^1.13.3",
"react-native-svg": "^12.1.1",
"release-it": "^14.10.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">=1.9.0",
"react-native-reanimated": ">=1.10.0",
"react-native-svg": ">=12.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}