-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "react-native-collapsible-header-views",
"version": "1.1.2",
"description": "Set of react-native views with collapsible headers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"preversion": "npm run build",
"postversion": "git push && git push --tags",
"build": "rm -rf dist && mkdir dist && cp src/index.d.ts dist/index.d.ts && tsc -p src",
"lint": "tslint -p src && tslint -p CollapsibleHeaderViewsExample",
"watch": "npm run build -- --watch"
},
"keywords": [
"react-native",
"collapsible",
"header"
],
"files": [
"CollapsibleHeaderViewsExample",
"dist",
"src"
],
"author": "iyegoroff <iegoroff@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.21",
"tslint": "^5.20.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.4"
},
"dependencies": {
"fast-memoize": "^2.5.1"
},
"bugs": {
"url": "https://github.com/iyegoroff/react-native-collapsible-header-views/issues"
},
"homepage": "https://github.com/iyegoroff/react-native-collapsible-header-views#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iyegoroff/react-native-collapsible-header-views.git"
}
}