-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.6 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
92
93
94
95
96
97
98
99
100
{
"name": "ns-react-i18next",
"version": "1.0.3",
"description": "Namespaced i18next localization in react with no tears",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"start": "webpack-dev-server --hot",
"build:amd": "tsc -p ./tsconfig.amd.json",
"build:commonjs": "tsc -p ./tsconfig.lib.json",
"build": "npm run build:amd && npm run build:commonjs && node copy.js",
"test": "jest",
"size-limit": "size-limit",
"publish": "npm run build && np --no-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmtrKovalenko/ns-react-18next.git"
},
"keywords": [
"react",
"i18next",
"localization",
"namespace",
"localize",
"i18n",
"react",
"component",
"context"
],
"author": "Dmitriy Kovalenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmtrKovalenko/ns-react-18next/issues"
},
"homepage": "https://github.com/dmtrKovalenko/ns-react-18next#readme",
"devDependencies": {
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/i18next": "^8.4.6",
"@types/jest": "^23.3.10",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.7.8",
"@types/react-dom": "^16.0.11",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"codecov": "^3.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-react-adapter-future": "^1.1.3",
"html-webpack-plugin": "^3.2.0",
"i18next": "^12.1.0",
"i18next-browser-languagedetector": "^2.2.4",
"jest": "^23.6.0",
"json-loader": "^0.5.7",
"np": "^3.0.4",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-app-rewired": "^1.6.2",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12",
"size-limit": "^0.18.5",
"source-map-loader": "^0.2.4",
"ts-jest": "^22.4.6",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^2.9.2",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": "^16.4.1",
"i18next": "^11.5.0"
},
"size-limit": [
{
"size": "2kb",
"path": "build/index.js"
}
],
"jest": {
"testURL": "http://localhost/",
"collectCoverage": true,
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/startUp.js",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}