-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "strong-globalize",
"description": "StrongLoop Globalize - CLI and API",
"version": "4.0.0",
"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": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"release": "npm test && lerna publish",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run prettier:fix && npm run tslint:fix",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- --check",
"prettier:fix": "npm run prettier:cli -- --write",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"tslint:fix": "npm run tslint -- --fix",
"coveralls": "tap --coverage-report=text-lcov | coveralls",
"pretest": "npm run build",
"test": "tap --bail --coverage --coverage-report=cobertura --timeout=200 packages/*/test/test-*.*",
"posttest": "npm run lint && tap --coverage-report=lcov --no-browser && tap --coverage-report=text"
},
"nyc": {
"include": [
"packages/*/index.js",
"packages/*/browser.js",
"packages/*/lib/*.js"
],
"all": false
},
"bugs": {
"url": "https://github.com/strongloop/strong-globalize/issues"
},
"devDependencies": {
"coveralls": "^3.1.0",
"lerna": "^6.6.1",
"prettier": "^2.1.2",
"tap": "^16.3.4",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1"
}
}