-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
63
64
{
"name": "i18n4e",
"version": "0.9.1",
"description": "i18n4e is a quick and easy way to add internationalization support to your Express Js application.",
"main": "lib/cjs/src/index.js",
"module": "lib/esm/src/index.mjs",
"types": "lib/esm/types/src/index.d.ts",
"displayName": "i18n4e",
"scripts": {
"test": "jest --passWithNoTests",
"clean": "rimraf ./lib",
"test:server": "cls && npm run clean && npm run build:esm && npm run build:cjs && cd ../server && code . && npm run dev",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./config/tsconfig.esm.json && shx mv lib/esm/src/index.js lib/esm/src/index.mjs",
"build:cjs": "tsc -p ./config/tsconfig.cjs.json",
"build:client": "cd ./client && npx webpack --config webpack.config.js",
"prepack": "npm run build",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"./**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/luiisp/i18n4e.git"
},
"author": "luiisp",
"icon": "https://raw.githubusercontent.com/luiisp/i18n4e-docs/main/__ico__/i18n4e_128.png",
"license": "MIT",
"bugs": {
"url": "https://github.com/luiisp/i18n4e/issues"
},
"funding": {
"type": "individual",
"url": "https://www.patreon.com/luiisp"
},
"homepage": "https://github.com/luiisp/i18n4e#readme",
"keywords": [
"i18n",
"ejs",
"express",
"template",
"translation",
"localization",
"simple",
"internationalization"
],
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/node": "^22.0.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"express-session": "^1.18.0",
"node-cache": "^5.1.2"
}
}