-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.21 KB
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
{
"name": "@psyycker/react-translation",
"version": "0.8.0",
"author": "Remy Villulles",
"license": "MIT",
"description": "A modern translation library for React!",
"main": "./build/index.js",
"files": [
"build",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/psyycker/react-translation"
},
"bugs": {
"url": "https://github.com/psyycker/react-translation/issues",
"email": "remy.villulles@gmail.com"
},
"keywords": [
"react",
"react native",
"react-native",
"translation",
"internationalisation",
"internationalization"
],
"homepage": "https://github.com/psyycker/react-translation/blob/master/README.md",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "CI=true jest --coverage",
"build": "rimraf build && tsc",
"prepublishOnly": "npm run test:coverage && npm run lint && npm run build",
"publish:alpha": "npm publish --tag alpha",
"publish": "npm publish",
"lint:fix": "eslint --ext .ts,.tsx ./src --fix",
"lint": "eslint --ext .ts,.tsx ./src",
"example:create": "npm create vite@latest examples/react -- --template react-ts && rimraf example/.gitignore"
},
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react-native": ">=0.61.0"
},
"peerDependenciesMeta": {
"react-native": {
"optional": true
}
},
"dependencies": {
"lodash": "^4.17.21"
}
}