-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"name": "@benjaminnoufel/translation",
"version": "2.1.0",
"description": "This is a library for translating text for react with hooks or Provider.",
"license": "MIT",
"main": "lib/translation.js",
"types": "lib/translation.d.ts",
"files": [
"lib"
],
"author": {
"name": "Benjamin Noufel",
"url": "https://github.com/benjaminnoufel"
},
"bugs": {
"url": "https://github.com/benjaminnoufel/translation/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/benjaminnoufel/translation.git"
},
"keywords": [
"react",
"i18n",
"hooks",
"translate",
"translation",
"lib"
],
"scripts": {
"build": "rollup --config rollup.config.ts",
"test": "jest",
"lint": "eslint --ext .ts,.js,.json .",
"types": "tsc --emitDeclarationOnly --declaration --project tsconfig.declaration.json"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@benjaminnoufel/eslint-config-javascript": "^0.1.3",
"@benjaminnoufel/eslint-config-typescript": "^0.1.2",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.4",
"react-test-renderer": "^17.0.2",
"rollup": "^2.58.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}