-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.7 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
{
"name": "mady",
"private": true,
"version": "4.1.0",
"description": "Easy-to-use tool to manage and translate ICU MessageFormat messages",
"bin": {
"mady": "lib/mady.js"
},
"main": "lib/translate.js",
"engines": {
"node": ">=10"
},
"author": "Guillermo Grau Panea",
"license": "MIT",
"keywords": [
"i18n",
"MessageFormat",
"translation",
"locales",
"translator"
],
"homepage": "https://github.com/guigrpa/mady#readme",
"bugs": {
"url": "https://github.com/guigrpa/mady/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guigrpa/mady.git"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/xxl",
"**/xxl/**"
]
},
"scripts": {
"compile": "oao run-script compile --parallel --tree",
"compileFast": "oao run-script compileFast --parallel",
"compileWatch": "oao run-script compileWatch --parallel --parallel-limit 200",
"lint": "eslint packages --ext .js,.jsx,.ts,.tsx",
"typecheck": "oao run-script typecheck",
"build": "oao run-script build && oao run-script copyArtefacts",
"test": "oao run-script test",
"xxl": "xxl --src packages --exclude node_modules,/lib/,/coverage/",
"travis": "yarn compile && yarn test",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"packages/**/*.[jt]s\""
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-import": "^2.22.1",
"oao": "^2.0.1",
"prettier": "^2.2.1",
"typescript": "^4.1.5",
"xxl": "^1.3.0"
}
}