-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 880 Bytes
/
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
{
"name": "react-native-cpp-code",
"version": "1.0.0",
"description": "React Native Example of a native module using C++ code",
"types": "./types/index.d.ts",
"main": "lib/index.js",
"author": "Marius Reimer <reime005@gmail.com>",
"contributors": [],
"homepage": "https://github.com/reime005/react-native-cpp-code",
"license": "MIT",
"keywords": [
"react-native",
"react native",
"c++",
"native modules",
"react",
"android",
"iOS"
],
"repository": {
"type": "git",
"url": "https://github.com/reime005/react-native-cpp-code.git"
},
"scripts": {
"start": "react-native start",
"test": "jest ."
},
"peerDependencies": {
"react": "^16.0",
"react-native": ">=0.57"
},
"devDependencies": {
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jest/jest.setup.js"
]
}
}