-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "@numizmatclub/i18n-tool",
"version": "1.0.2",
"description": "A simple internationalization library",
"main": "lib/index.js",
"author": {
"email": "[email protected]",
"name": "Valery Kantor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/golgotha/i18n-tools.git"
},
"bugs": {
"url": "https://github.com/golgotha/i18n-tools/issues"
},
"homepage": "https://github.com/golgotha/i18n-tools#readme",
"scripts": {
"build": "babel src --out-dir lib",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"keywords": [
"i18n-tool",
"internationalization",
"translation",
"i18n",
"localization",
"js",
"react"
],
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"jest": "^23.5.0",
"jest-cli": "^23.5.0"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js}",
"!**/node_modules/**"
]
}
}