-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
{
"name": "@js-pack/i18n-react",
"version": "1.1.0",
"description": "easy-to-use translation library",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c",
"build-dev": "npm run build && yalc publish --push",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/js-pack/i18n-react.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^7.0.4",
"@semantic-release/npm": "^8.0.3",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.40",
"husky": "^7.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"rollup": "^2.70.0",
"rollup-plugin-prettier": "^2.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.0.4",
"ts-jest": "^27.1.3",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/js-pack/i18n-react/issues"
},
"homepage": "https://github.com/js-pack/i18n-react#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"files": [
"dist"
],
"keywords": [
"npm",
"i18n",
"i18n-react",
"internationalization",
"localization",
"translation"
],
"dependencies": {
"@js-pack/i18n": "^1.0.1"
},
"peerDependencies": {
"react": ">=16.0.0"
}
}