-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "@js-pack/i18n-cli",
"version": "1.0.0",
"description": "key extractor library of @js-papck/i18n",
"bin": {
"i18n-cli": "bin/index.js"
},
"typings": "bin/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c && chmod +x ./bin/index.js",
"build-dev": "npm run build && yalc publish --push",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/js-pack/i18n-cli.git"
},
"keywords": [
"npm",
"i18n",
"i18n-cli",
"cli",
"internationalization",
"localization",
"translation"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^7.0.4",
"@semantic-release/npm": "^8.0.3",
"@types/jest": "^27.4.1",
"husky": "^7.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rollup": "^2.70.0",
"rollup-plugin-prettier": "^2.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/js-pack/i18n-cli/issues"
},
"homepage": "https://github.com/js-pack/i18n-cli#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"files": [
"dist"
],
"dependencies": {
"@babel/parser": "^7.16.4",
"@babel/traverse": "^7.16.3",
"commander": "^8.3.0"
}
}