-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 892 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 892 Bytes
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
{
"name": "react-component",
"title": "React Component",
"version": "2.1.0",
"description": "Tool to create a React Native library with a command-line interface",
"main": "index.js",
"scripts": {
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beatjs/react-component.git",
"baseUrl": "https://github.com/beatjs/react-component"
},
"keywords": [
"react-native"
],
"author": {
"name": "Liam Xu",
"email": "liamxujia@outlook.com"
},
"license": "MIT License",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "16.13.1",
"react-native": "^0.67.4"
},
"devDependencies": {
"react": "16.13.1",
"react-native": "^0.67.4"
}
}