forked from timbrandin/i18next-async-storage-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.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
50
51
52
{
"name": "@conpago/i18next-async-storage-backend",
"version": "1.4.0",
"description": "caching layer backend for i18next using react native async storage",
"main": "./index.js",
"jsnext:main": "dist/es/index.js",
"keywords": [
"i18next",
"i18next-backend"
],
"homepage": "https://github.com/conpagoaus/i18next-async-storage-backend/blob/master/README.md",
"bugs": "https://github.com/conpagoaus/i18next-async-storage-backend/pulls",
"devDependencies": {
"@react-native-async-storage/async-storage": "~1.15.0",
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.6",
"@lopatnov/rollup-plugin-uglify": "^2.1.2",
"@rollup/plugin-babel": "^5.3.1",
"eslint": "^8.19.0",
"eslint-plugin-react-native": "^4.0.0",
"metro-react-native-babel-preset": "^0.71.3",
"mkdirp": "1.0.4",
"rimraf": "3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-pluginutils": "^2.8.2",
"terser": "^5.14.2",
"yargs": "^17.5.1"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "*"
},
"scripts": {
"clean": "rimraf dist && mkdirp dist",
"copy": "cp ./dist/umd/i18nextAsyncStorageBackend.min.js ./i18nextAsyncStorageBackend.min.js && cp ./dist/umd/i18nextAsyncStorageBackend.js ./i18nextAsyncStorageBackend.js",
"build:es": "BABEL_ENV=jsnext babel src --out-dir dist/es",
"build:cjs": "babel src --out-dir dist/commonjs",
"build:umd": "rollup -c rollup.config.js --format umd && rollup -c rollup.config.js --format umd --compact",
"build:amd": "rollup -c rollup.config.js --format amd && rollup -c rollup.config.js --format umd --compact",
"build:iife": "rollup -c rollup.config.js --format iife && rollup -c rollup.config.js --format iife --compact",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:umd && npm run copy",
"preversion": "npm run build && git push",
"postversion": "git push && git push --tags"
},
"author": [
"Jan Mühlemann <[email protected]> (https://github.com/jamuhl)",
"Tim Brandin <[email protected]> (https://github.com/timbrandin)"
],
"license": "MIT"
}