-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 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
{
"name": "strong-globalize-cli",
"description": "StrongLoop Globalize - CLI",
"version": "7.1.1",
"keywords": [
"StrongLoop",
"globalize",
"cldr"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git://github.com/strongloop/strong-globalize.git"
},
"author": "IBM Corp.",
"license": "Artistic-2.0",
"readmeFilename": "README.md",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc -p tsconfig.json --outdir lib",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "tap --bail --timeout=200 test/test-*.*"
},
"bugs": {
"url": "https://github.com/strongloop/strong-globalize/issues"
},
"bin": {
"slt-globalize": "./lib/cli.js"
},
"dependencies": {
"@babel/parser": "^7.11.5",
"async": "^3.2.0",
"debug": "^4.2.0",
"estraverse": "^5.2.0",
"g11n-pipeline": "^3.4.0",
"globalize": "^1.6.0",
"htmlparser2": "^3.10.1",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"mkdirp": "^1.0.4",
"mktmpdir": "^0.1.1",
"optimist": "^0.6.1",
"strong-globalize": "^6.0.6",
"util.promisify": "^1.0.1",
"word-count": "^0.2.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/async": "^3.2.3",
"@types/debug": "^4.1.5",
"@types/domhandler": "^2.4.1",
"@types/esprima": "^4.0.2",
"@types/estraverse": "^5.1.0",
"@types/htmlparser2": "^3.10.2",
"@types/lodash": "^4.14.161",
"@types/md5": "^2.2.0",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.11.2",
"@types/optimist": "0.0.29",
"@types/yamljs": "^0.2.31",
"coveralls": "^3.1.0",
"intercept-stdout": "^0.1.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"tap": "^16.3.4",
"typescript": "^4.0.3"
}
}