-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 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
{
"name": "rn-placeholder",
"version": "3.0.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/mfrachet/rn-placeholder",
"repository": {
"type": "git",
"url": "https://github.com/mfrachet/rn-placeholder"
},
"description": "Display some placeholder stuff before rendering your text or media content in React Native",
"keywords": [
"react-native",
"ios",
"android",
"expo"
],
"author": "Marvin FRACHET <[email protected]> (https://github.com/mfrachet)",
"license": "MIT",
"scripts": {
"test": "tsc --outDir example/placeholder && yarn --cwd ./example test",
"build": "yarn lint && yarn test && tsc --outDir lib",
"format": "prettier --write './src/**/*.tsx'",
"lint": "tslint -c tslint.json 'src/**/**'",
"start": "concurrently \"tsc -w --outDir example/placeholder\" \"yarn --cwd ./example start\"",
"start:web": "yarn --cwd ./example-web start",
"check:lint": "tsc --noEmit && yarn lint",
"release": "yarn check:lint && yarn test && yarn build && npm publish",
"generate:docs": "yarn --cwd ./website build && mv ./website/public ./docs"
},
"devDependencies": {
"@types/react": "^16.9.49",
"@types/react-native": "^0.63.18",
"concurrently": "^5.3.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-native": "^0.63.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}