-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "@phrase/i18next-backend",
"version": "1.3.3",
"description": "Phrase Strings OTA i18next backend",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/*.ts",
"test": "npx jest",
"build": "npm run build:common && npm run build:types",
"build:types": "tsc --emitDeclarationOnly",
"build:common": "rm -rf dist && node esbuild.js"
},
"keywords": [
"i18next",
"phrase",
"strings",
"over-the-air",
"ota"
],
"homepage": "https://phrase.com",
"author": "Phrase",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phrase/i18next-phrase-backend"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@types/jest": "^29.5.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"esbuild": "^0.27.2",
"esbuild-node-externals": "^1.8.0",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"i18next": "^23.4.6",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"uuid": "^9.0.1"
}
}