-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 828 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 828 Bytes
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
{
"name": "gettext-translator",
"version": "3.0.2",
"description": "Javascript gettext translator",
"main": "dist/translator.js",
"module": "src/translator.js",
"files": [
"dist",
"src"
],
"scripts": {
"test": "mocha --require @babel/register tests/test.js",
"build": "babel src --out-dir dist",
"prettier": "prettier src/*.js tests/*.js --single-quote --tab-width 4 --write --print-width 120"
},
"keywords": [
"gettext",
"i18n",
"translator"
],
"author": "oscarotero <oom@oscarotero.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/plugin-transform-modules-umd": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/register": "^7.24.6",
"mocha": "^6.2.3",
"prettier": "^1.19.1"
}
}