-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "i18next-chained-backend",
"version": "4.6.2",
"description": "backend layer for i18next to chain backends",
"main": "./dist/cjs/i18nextChainedBackend.js",
"module": "./dist/esm/i18nextChainedBackend.js",
"types": "./index.d.ts",
"keywords": [
"i18next",
"i18next-backend"
],
"homepage": "https://github.com/i18next/i18next-chained-backend",
"bugs": "https://github.com/i18next/i18next-chained-backend/issues",
"repository": {
"type": "git",
"url": "https://github.com/i18next/i18next-chained-backend"
},
"dependencies": {
"@babel/runtime": "^7.23.2"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-eslint": "^10.1.0",
"cpy-cli": "^5.0.0",
"dtslint": "4.2.1",
"eslint": "8.53.0",
"eslint-config-airbnb": "19.0.4",
"expect.js": "0.3.1",
"i18next": "23.7.1",
"i18next-http-backend": "2.4.1",
"i18next-locize-backend": "6.3.1",
"json5": "2.2.3",
"mkdirp": "3.0.1",
"mocha": "10.2.0",
"rimraf": "5.0.5",
"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": {
"pretest": "npm run test:typescript",
"test": "npm run build && mocha test -R spec --exit",
"test:typescript": "tslint --project tsconfig.json && tsd",
"clean": "rimraf dist && mkdirp dist",
"build": "npm run clean && rollup -c && cpy \"./dist/umd/*.js\" ./",
"preversion": "npm run test && 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",
"lock": false
}