-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 882 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
39
40
41
42
43
44
45
{
"name": "i18n-literally",
"version": "1.7.1",
"description": "A simple way to introduce internationalization to your JS",
"license": "MIT",
"repository": "andreruffert/i18n-literally",
"author": "André Ruffert",
"main": "index.js",
"bin": {
"literally": "cli/cli.js"
},
"scripts": {
"test": "ava",
"test-translations": "./cli/cli.js check-missing-translations test.js",
"literally": "./cli/cli.js test.js"
},
"ava": {
"require": [
"esm"
]
},
"files": [
"index.js",
"cli"
],
"keywords": [
"i18n",
"js",
"template-literals",
"internationalization",
"translation",
"localization",
"cli"
],
"dependencies": {
"@babel/parser": "^7.9.4",
"chalk": "^4.0.0",
"meow": "^8.0.0",
"opn": "^6.0.0"
},
"devDependencies": {
"ava": "^3.7.0",
"esm": "^3.2.25"
}
}