-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 855 Bytes
/
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
{
"name": "i18next-markdown-jsx-plugin",
"version": "1.0.13",
"main": "./lib/index.js",
"module": "./src/index.js",
"repository": "git@github.com:roprgm/i18next-markdown-jsx.git",
"author": "Rodrigo Belfiore <rodrigobelfiore@gmail.com>",
"license": "MIT",
"keywords": [
"i18next",
"markdown",
"jsx",
"react"
],
"scripts": {
"test": "jest",
"build": "babel src --out-dir lib",
"preversion": "yarn run build",
"postversion": "git push && git push --tags"
},
"jest": {
"testMatch": [
"**/tests/**/*.js"
]
},
"dependencies": {
"i18next": "^11.2.3",
"markdown-to-jsx": "^6.6.1"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jest": "^22.4.3",
"react": "^16.3.2",
"react-dom": "^16.3.2"
}
}