-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "action-sheet-rn",
"version": "0.0.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/mfrachet/action-sheet-rn",
"repository": {
"type": "git",
"url": "https://github.com/mfrachet/action-sheet-rn"
},
"description": "Probably the most declarative API for ActionSheets in React Native",
"keywords": [
"react-native",
"ios",
"android",
"expo"
],
"author": "Marvin FRACHET <marvin.frachet@gmail.com> (https://github.com/mfrachet)",
"license": "MIT",
"scripts": {
"test": "tsc --outDir example/actionsheet && yarn --cwd ./example test",
"build": "tsc --outDir lib",
"format": "prettier --write './src/**/*.tsx'",
"lint": "tslint -c tslint.json 'src/**/**'",
"start": "concurrently \"tsc -w --outDir example/actionsheet\" \"yarn --cwd ./example start\"",
"check:lint": "tsc --noEmit && yarn lint"
},
"devDependencies": {
"@types/react": "^16.8.22",
"@types/react-native": "^0.57.64",
"concurrently": "^4.1.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-native": "^0.59.5",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-native": "^0.59.5"
}
}