-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "@whatever-company/elium-i18n",
"description": "",
"main": "index.js",
"author": "Elium",
"license": "UNLICENSED",
"version": "5.2.4",
"engines": {
"node": ">=15",
"npm": "^7.2.0"
},
"scripts": {
"format": "prettier --write '**/*.{js,jsx,md,json,css}'",
"lint": "eslint scripts bin/elium-i18n",
"test": "bin/elium-i18n extract './tests/**/*.+(js|jsx)' ./tests/translations -d elium-i18n -l en",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git@github.com:whatever-company/elium-i18n.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bin": "./bin/elium-i18n",
"files": [
"bin",
"scripts"
],
"dependencies": {
"@babel/parser": "7.24.0",
"@babel/traverse": "7.24.0",
"commander": "12.0.0",
"gettext-parser": "7.0.1",
"htmlclean": "3.0.8",
"i18next-conv": "10.1.0",
"lodash": "4.17.21"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"prettier": "3.2.5",
"standard-version": "9.5.0"
}
}