-
Notifications
You must be signed in to change notification settings - Fork 268
/
package.json
62 lines (62 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-native-storage",
"version": "1.0.1",
"description": "A local storage wrapper for both react-native(AsyncStorage) and browser(localStorage).",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sunnylqm/react-native-storage.git"
},
"bugs": {
"url": "https://github.com/sunnylqm/react-native-storage/issues"
},
"homepage": "https://github.com/sunnylqm/react-native-storage#readme",
"keywords": [
"react-native",
"localStorage",
"AsyncStorage"
],
"files": [
"lib/",
"src/"
],
"author": "sunnylqm",
"main": "lib/storage.cjs.js",
"jsnext:main": "lib/storage.esm.js",
"module": "lib/storage.esm.js",
"react-native": "src/storage.js",
"typings": "lib/storage.d.ts",
"scripts": {
"clean": "rm -rf lib/",
"build": "yarn clean && rollup -c && cp src/storage.d.ts lib/",
"prepare": "yarn build",
"test": "jest",
"postinstall": "opencollective-postinstall"
},
"jest": {
"verbose": true,
"bail": true,
"setupFiles": [
"./jestSupport/mockStorage.js"
]
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"rollup": "^1.10.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {
"opencollective-postinstall": "^2.0.2",
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-storage"
}
}