-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 963 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
41
42
43
{
"name": "react-native-nfc-ios",
"version": "0.1.5",
"description": "Use iOS 11+ CoreNFC with React Native",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"react-native",
"react",
"native",
"nfc",
"ndef"
],
"homepage": "https://github.com/barodeur/react-native-nfc-ios",
"repository": "github:barodeur/react-native-nfc-ios",
"author": "Paul Chobert <[email protected]>",
"nativePackage": true,
"license": "MIT",
"peerDependencies": {
"react-native": "^0.48.3"
},
"dependencies": {},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^2.1.0",
"jest": "^20.0.4",
"jest-react-native": "^18.0.0",
"react": "^16.0.0-alpha.12",
"react-native": "^0.48.3"
},
"jest": {
"preset": "react-native",
"globals": {
"__DEV__": true
},
"testRegex": ".*\\.test\\.js$",
"setupFiles": [
"./jest/setup.js"
]
}
}