-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@signavio/i18n",
"version": "5.0.1",
"description": "Minimalist gettext style i18n for JavaScript",
"main": "lib/index.js",
"module": "lib-es6/index.js",
"repository": {
"type": "git",
"url": "https://github.com/signavio/i18n.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bin": {
"i18n-extract": "bin/i18n-extract.js",
"i18n-merge": "bin/i18n-merge.js"
},
"scripts": {
"prebuild": "yarn run clean",
"build": "yarn build:es5 && yarn build:es6",
"build:es5": "cross-env NODE_ENV=production BABEL_ENV=es5 babel src --out-dir lib",
"build:es6": "cross-env NODE_ENV=production BABEL_ENV=es6 babel src --out-dir lib-es6",
"clean": "rimraf lib lib-es6",
"coverage": "yarn test --runInBand --reporters=jest-junit",
"dryrun": "node ./bin/i18n-extract.js test/fixtures/**/*.js",
"format": "prettier --write --no-semi --single-quote --trailing-comma es5 \"{src,test}/**/*.js\"",
"lint": "eslint src test/specs",
"test": "jest",
"pretest": "yarn build",
"prepublishOnly": "yarn build",
"predryrun": "yarn build",
"flow": "flow check"
},
"author": "Jan-Felix Schwarz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/signavio/i18n/issues"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"gettext-parser": "2.0.0",
"glob": "^6.0.1",
"marked": "^4.0.10",
"progress": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.25.9",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-proposal-function-sent": "7.25.9",
"@babel/plugin-proposal-throw-expressions": "7.25.9",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-proto-to-assign": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.25.9",
"@babel/preset-flow": "7.25.9",
"@babel/preset-react": "7.25.9",
"@babel/eslint-parser": "7.25.9",
"babel-plugin-transform-minify-booleans": "6.8.3",
"babel-plugin-transform-remove-console": "6.8.5",
"babel-plugin-transform-remove-debugger": "6.8.5",
"commander": "6.2.1",
"cross-env": "4.0.0",
"eslint": "8.57.1",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.37.2",
"flow-bin": "0.65.0",
"gettext-to-messageformat": "0.3.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"po2json": "1.0.0-beta-3",
"prettier": "1.15.3",
"react": "16.14.0",
"react-dom": "16.14.0",
"rimraf": "5.0.10",
"sonarqube-scanner": "3.5.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"react": "^16.13.0"
},
"resolutions": {
"set-value": "^4.1.0",
"minimist": "^1.2.6",
"json5": "2.2.3"
}
}