-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.52 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": "i18next-async-storage-backend2",
"version": "2.1.0",
"description": "caching layer backend for i18next using react native async storage",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/commonjs/index.js",
"default": "./dist/umd/i18nextAsyncStorageBackend.js"
}
},
"keywords": [
"i18next",
"i18next-backend"
],
"homepage": "https://github.com/bothrs/i18next-async-storage-backend2",
"bugs": "https://github.com/bothrs/i18next-async-storage-backend2/issues",
"dependencies": {},
"devDependencies": {
"@react-native-async-storage/async-storage": "~1.24.0",
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-preset-es2015": "6.22.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-es2015-rollup": "3.0.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "3.16.1",
"eslint-config-airbnb": "14.1.0",
"mkdirp": "0.5.1",
"rimraf": "2.6.1",
"rollup": "0.41.4",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-uglify": "1.0.1",
"yargs": "6.6.0"
},
"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 --uglify",
"build:amd": "rollup -c rollup.config.js --format amd && rollup -c rollup.config.js --format umd --uglify",
"build:iife": "rollup -c rollup.config.js --format iife && rollup -c rollup.config.js --format iife --uglify",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:umd && npm run copy",
"preversion": "npm run build && git add \"i*.js\" && git push",
"postversion": "git push && git push --tags"
},
"author": "Thomas Ghysels <thomas@bothrs.com> (https://github.com/bothrs)",
"contributors": [
"Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)",
"Tim Brandin <tim.brandin@gmail.com> (https://github.com/timbrandin)",
"Thomas Ghysels <thomas@bothrs.com> (https://github.com/bothrs)"
],
"license": "MIT"
}