forked from lvgl/lv_i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
48
49
50
51
{
"name": "lv_i18n",
"version": "0.2.1",
"description": "CLI tools for LittlevGL i18n support.",
"keywords": [
"i18n",
"internationalization"
],
"repository": "littlevgl/lv_i18n",
"license": "MIT",
"files": [
"lv_i18n.js",
"lib/",
"src/"
],
"bin": {
"lv_i18n": "lv_i18n.js"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha --recursive",
"coverage": "npm run test && nyc report --reporter html",
"template_update": "./support/template_update.js",
"shrink-deps": "shx rm -rf node_modules/js-yaml/dist node_modules/lodash/fp/",
"prepublishOnly": "npm run shrink-deps"
},
"dependencies": {
"argparse": "^2.0.1",
"cldr-core": "^42.0.0",
"debug": "^4.3.4",
"es6-error": "^4.1.1",
"glob": "^8.0.3",
"js-yaml": "^4.1.0",
"shelljs": "^0.8.5"
},
"bundledDependencies": [
"argparse",
"cldr-core",
"debug",
"es6-error",
"glob",
"js-yaml",
"shelljs"
],
"devDependencies": {
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"shx": "^0.3.4"
}
}