This repository has been archived by the owner on Feb 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ilib-lint-webos",
"version": "1.0.1",
"main": "./src/index.js",
"type": "module",
"exports": {
".": {
"default": {
"default": "./src/index.js"
}
},
"./package.json": "./package.json"
},
"description": "ilib-lint plugin to support webOS Platform",
"license": "Apache-2.0",
"keywords": [
"internationalization",
"i18n",
"g11n",
"lint",
"xliff",
"webOS"
],
"author": {
"name": "Goun Lee",
"email": "[email protected]"
},
"contributors": [
{
"name": "Edwin Hoogerbeets",
"email": "[email protected]"
},
{
"name": "Goun Lee",
"email": "[email protected]"
}
],
"files": [
"src",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/iLib-js/ilib-lint-webos.git"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "npm run build:prod",
"dist": "npm-run-all doc build:prod build:pkg; npm pack",
"test": "LANG=en_US.UTF8 node --experimental-vm-modules ./node_modules/.bin/jest",
"test:watch": "LANG=en_US.UTF8 node --experimental-vm-modules ./node_modules/.bin/jest --watch",
"debug": "LANG=en_US.UTF8 node --experimental-vm-modules --inspect-brk node_modules/.bin/jest -i",
"clean": "git clean -f -d src test",
"doc": "mkdir -p docs ; jsdoc2md -c jsdoc.json --separators --source src/* -m table > docs/ilibLint.md ; npm run doc:html",
"doc:html": "jsdoc -c jsdoc.json"
},
"devDependencies": {
"docdash": "^2.0.2",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"ilib-lint-common": "^3.0.0",
"log4js": "^6.9.1"
}
}