-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.34 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
{
"name": "@clustree/intl",
"version": "1.1.0",
"description": "Components used for translation by Clustree",
"source": "src/index.js",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"author": "Clustree",
"license": "MIT",
"private": false,
"peerDependencies": {
"babel-plugin-macros": "^2.2.0 || ^3.0.0",
"react": "^16.8.0 || ^17.0.0",
"react-intl": "^5.8.0"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "microbundle --jsx React.createElement --strict",
"lint": "eslint src macro",
"prepare": "yarn build",
"test": "jest"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
]
},
"bin": {
"clustree-intl-extract": "./scripts/extract-translations.js",
"clustree-intl-validate": "./scripts/validate-translations.js"
},
"dependencies": {
"@babel/core": "^7.12.16",
"@babel/template": "^7.12.13",
"chalk": "^4.1.0",
"glob": "^7.1.3",
"intl-messageformat-parser": "^6.3.2",
"jest-worker": "^26.6.2",
"ora": "^5.3.0",
"react-error-boundary": "^3.1.1",
"react-intl-translations-manager": "^5.0.1",
"rimraf": "^3.0.2"
},
"jest": {
"moduleNameMapper": {
"^@clustree/intl$": "<rootDir>/src/index.js",
"^@clustree/intl/macro$": "<rootDir>/macro/index.js"
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"verbose": true,
"collectCoverageFrom": [
"src/**/*.js",
"scripts/**/*.js",
"!**/.eslintrc.js"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-macros": "3.0.1",
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.5.4",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-intl": "^5.12.3",
"react-test-renderer": "^16.7.0"
},
"sideEffects": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"resolutions": {
"micromatch": "^4.0.0",
"mkdirp": "0.5.5"
}
}