-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.24 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
{
"name": "i18next-react-postprocessor",
"version": "3.1.0",
"description": "embed React elements inside your i18next translation strings",
"homepage": "https://github.com/orzechowskid/i18next-react-postprocessor",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/orzechowskid/i18next-react-postprocessor.git"
},
"main": "dist/index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"scripts": {
"build:dev": "NODE_ENV=development rollup -c rollup.config.js",
"build:example": "NODE_ENV=development APP_ENV=example rollup -c rollup.config.js",
"build:prod": "NODE_ENV=production rollup -c rollup.config.js",
"preexample": "npm run build:example",
"prepublishOnly": "npm run build:prod",
"example": "serve -l 8808",
"test": "jest --verbose --coverage src/"
},
"keywords": [
"i18next",
"react"
],
"author": "orzechod@gmail.com",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-15": "^1.4.1",
"enzyme-to-json": "^3.4.4",
"i18next": "^19.3.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"react": ">=15.6.0",
"react-dom": ">=15.6.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-visualizer": "^4.1.0",
"serve": "^13.0.2"
},
"peerDependencies": {
"i18next": ">=8.4.3",
"react": ">=15.6.1"
},
"dependencies": {
"md5-es": "^1.8.2"
},
"jest": {
"moduleNameMapper": {
"\\.scss$": "identity-obj-proxy"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testURL": "http://localhost",
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}