-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "react-native-async-storage",
"version": "0.0.1",
"description": "An abstraction on top of react-native's AsyncStorage",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vermilion1/react-native-async-storage.git"
},
"keywords": [
"react-native",
"AsyncStorage"
],
"author": "Vitalii Petrychuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/vermilion1/react-native-async-storage/issues"
},
"homepage": "https://github.com/vermilion1/react-native-async-storage/blob/master/README.md",
"peerDependencies": {
"react-native": ">=0.5.0"
},
"jest": {
"scriptPreprocessor": "jestSupport/scriptPreprocess.js",
"setupEnvScriptFile": "jestSupport/env.js",
"collectCoverage": true,
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"source-map"
]
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"jest": "^0.1.40",
"jest-cli": "^0.4.15",
"jscs": "^1.13.1"
}
}