-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-hybrid-storage",
"version": "0.0.0-development",
"description": "A local storage wrapper for both react-native(AsyncStorage) and browser(localStorage). Support size controlling, auto expiring, remote data auto syncing and getting batch data in one query.",
"main": "./distribution/index.js",
"scripts": {
"commit": "git-cz",
"flow": "flow",
"lint": "eslint .",
"test": "jest",
"build": "babel --no-babelrc src/ --out-dir distribution/ --presets=es2015,stage-0 --plugins=transform-runtime,transform-object-rest-spread,transform-flow-strip-types",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"jest": {
"verbose": true,
"bail": true,
"globals": {
"__DEV__": true
},
"modulePaths": [
"src"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"setupFiles": [
"./mocks/index.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/dnamic/react-hybrid-storage.git"
},
"keywords": [
"react-native",
"react",
"localStorage",
"AsyncStorage",
"Hybrid"
],
"author": "abdelav",
"license": "MIT",
"bugs": {
"url": "https://github.com/dnamic/react-hybrid-storage/issues"
},
"homepage": "https://github.com/dnamic/react-hybrid-storage#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.1.1",
"flow-bin": "^0.49.1",
"jest": "^20.0.2",
"jest-cli": "^20.0.4",
"semantic-release": "^6.3.6"
},
"engines": {
"node": "8.x",
"npm": "5.x"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}