-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
60 lines (60 loc) · 1.9 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
{
"name": "i18next-localstorage-backend",
"version": "4.2.0",
"description": "caching layer backend for i18next using browsers localStorage",
"main": "./dist/cjs/i18nextLocalStorageBackend.js",
"module": "./dist/esm/i18nextLocalStorageBackend.js",
"types": "./index.d.ts",
"keywords": [
"i18next",
"i18next-backend"
],
"repository": {
"type": "git",
"url": "https://github.com/i18next/i18next-localStorage-backend.git"
},
"homepage": "https://github.com/i18next/i18next-localStorage-backend",
"bugs": "https://github.com/i18next/i18next-localStorage-backend/issues",
"dependencies": {
"@babel/runtime": "^7.22.15"
},
"devDependencies": {
"@babel/core": "^7.22.19",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"babel-eslint": "^10.0.1",
"cpy-cli": "^5.0.0",
"dtslint": "4.2.1",
"escope": "^4.0.0",
"eslint": "8.49.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-n": "16.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-require-path-exists": "1.1.9",
"eslint-plugin-standard": "5.0.0",
"i18next": "23.7.1",
"rimraf": "5.0.1",
"rollup": "^2.78.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"tsd": "0.29.0",
"tslint": "5.20.1",
"typescript": "5.2.2"
},
"scripts": {
"lint": "eslint ./src/*",
"pretest": "npm run test:typescript",
"test": "npm run lint",
"test:typescript": "tslint --project tsconfig.json && tsd",
"build": "rimraf dist && rollup -c && cpy \"./dist/umd/*.js\" ./",
"preversion": "npm run build && git push",
"postversion": "git push && git push --tags"
},
"tsd": {
"directory": "test/typescript"
},
"author": "Jan Mühlemann <[email protected]> (https://github.com/jamuhl)",
"license": "MIT"
}