-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
{
"name": "@u-wave/react-translate",
"description": "Small translations for React apps with @u-wave/translate.",
"version": "2.0.3",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/u-wave/react-translate/issues"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@rollup/plugin-babel": "^6.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@u-wave/react-translate-example": "file:example",
"@u-wave/translate": "^1.1.0",
"@vitest/coverage-v8": "^2.0.2",
"cross-env": "^7.0.2",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jsdom": "^25.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rollup": "^4.9.1",
"vitest": "^2.0.2"
},
"homepage": "https://github.com/u-wave/react-translate#readme",
"keywords": [
"css",
"media-query",
"react",
"responsive"
],
"license": "MIT",
"main": "dist/react-translate.js",
"module": "dist/react-translate.es.js",
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/u-wave/react-translate.git"
},
"scripts": {
"prepare": "rollup -c",
"lint": "eslint --cache .",
"test": "npm run lint && npm run tests-only",
"tests-only": "vitest run --coverage.enabled --coverage.reporter=lcov --coverage.reporter=text --coverage.100 --coverage.include='src/**'",
"example": "npm run --prefix example build && npm run --prefix example start"
},
"sideEffects": false
}