forked from jasonmerino/react-native-simple-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
43
44
45
46
47
48
49
{
"name": "react-native-simple-store",
"version": "1.2.0",
"description": "A minimalistic wrapper around React Native's AsyncStorage.",
"main": "dist/index.js",
"scripts": {
"dist": "babel src -d dist",
"gen-docs": "./node_modules/.bin/jsdox src/index.js --output docs",
"preversion": "npm run dist -s ; npm run gen-docs -s",
"test": "./node_modules/.bin/jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootdir>/node_modules/react-native"
],
"testFileExtensions": [
"js"
],
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/jasonmerino/react-native-simple-store"
},
"keywords": [
"React Native",
"iOS",
"Android",
"AsyncStorage",
"data store",
"key value store"
],
"author": "Jason Merino",
"license": "MIT",
"dependencies": {
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-jest": "^9.0.3",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"jest-cli": "^13.2.3",
"jsdox": "^0.4.10",
"react": "^0.14.7",
"react-native": "^0.22.0"
}
}