-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.3 KB
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": "@casteasoft/react-native-content-loader",
"version": "0.0.10",
"description": "Customizable react native content loader for React-Native apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dts": "cp src/index.d.ts dist/.",
"dev": "yarn dts && npx babel src/index.js --watch --out-file dist/index.js --source-maps inline",
"prod": "yarn dts && npx babel src/index.js --out-file dist/index.js --source-maps inline",
"release": "yarn prod && npx release-it"
},
"author": "Cipto Hadi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/casteasoft/react-native-content-loader.git"
},
"keywords": [
"loader",
"content-loader",
"placeholder",
"content-placeholder",
"react-component",
"react-native",
"ios",
"android"
],
"bugs": {
"url": "https://github.com/casteasoft/react-native-content-loader/issues"
},
"homepage": "https://github.com/casteasoft/react-native-content-loader#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "7.19.3",
"@babel/plugin-transform-react-jsx-source": "7.18.6",
"@babel/preset-react": "^7.18.6",
"babel-preset-minify": "^0.5.2"
},
"peerDependencies": {
"react-native": ">= 0.59"
}
}