forked from intlify/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.56 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@intlify/cli",
"description": "CLI Tooling for i18n development",
"version": "0.2.0",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bin": {
"intlify": "./bin/run.js"
},
"bugs": {
"url": "https://github.com/intlify/cli/issues"
},
"changelog": {
"labels": {
"Type: Feature": ":star: Features",
"Type: Bug": ":bug: Bug Fixes",
"Type: Security": ":lock: Security Fixes",
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
"Type: Improvement": ":zap: Improvement Features",
"Type: Breaking": ":boom: Breaking Change",
"Type: Deprecated": ":warning: Deprecated Features",
"Type: I18n": ":globe_with_meridians: Internationalization",
"Type: A11y": ":wheelchair: Accessibility",
"Type: Documentation": ":pencil: Documentation"
}
},
"dependencies": {
"@intlify/core": "^9.0.0-beta.16",
"@intlify/core-base": "^9.0.0-beta.16",
"@intlify/message-compiler": "^9.0.0-beta.16",
"@intlify/shared": "^9.0.0-beta.16",
"chalk": "^4.1.0",
"debug": "^4.3.1",
"glob": "^7.1.6",
"jsonc-eslint-parser": "^0.6.0",
"yaml-eslint-parser": "^0.2.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.12.0",
"@types/debug": "^4.1.5",
"@types/eslint": "^7.2.6",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"api-docs-gen": "^0.2.6",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue-libs": "^4.0.0",
"jest": "^26.6.0",
"jest-watch-typeahead": "^0.6.0",
"lerna-changelog": "^1.0.1",
"npm-run-all": "^4.1.5",
"opener": "^1.5.1",
"prettier": "^2.2.0",
"shipjs": "^0.23.0",
"source-map": "^0.6.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"typescript-eslint-language-service": "^4.1.2"
},
"engines": {
"node": ">= 10"
},
"files": [
"bin/*.js",
"locales/*.json",
"dist/*.d.ts",
"lib/**/*.js"
],
"homepage": "https://github.com/intlify/cli#readme",
"keywords": [
"cli",
"i18n",
"intlify",
"tooling"
],
"license": "MIT",
"main": "lib/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/cli.git"
},
"scripts": {
"build": "yarn build:transpile && yarn build:extract",
"build:docs": "api-docs-gen ./temp/cli.api.json -c ./docsgen.config.js -o ./ -g noprefix",
"build:extract": "api-extractor run -l -c ./api-extractor.json",
"build:transpile": "tsc -p .",
"clean": "npm-run-all clean:*",
"clean:cache:jest": "jest --clearCache",
"clean:coverage": "rm -rf ./coverage",
"clean:lib": "rm -rf ./lib/*.*",
"coverage": "opener coverage/lcov-report/index.html",
"fix": "npm-run-all --parallel lint:fix format:fix",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"format:fix": "yarn format --write",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "yarn lint --fix",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"test": "yarn lint && yarn test:cover",
"test:cover": "yarn test:unit --coverage",
"test:unit": "jest --env node",
"test:watch": "jest --env node --watch",
"watch": "tsc -p . --watch"
},
"types": "dist/cli.d.ts"
}