-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
{
"name": "@tinymce-plugin/i18n-api",
"private": false,
"version": "0.0.7",
"main": "./src/index.js",
"module": "./src/index.js",
"scripts": {
"test": "node ./src/index.js",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"cm": "git add . && git-cz && git push",
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0"
},
"author": "Five(Li Hailong)",
"license": "Apache-2.0",
"description": "tinymce-plugin i18n-api",
"keywords": [
"tinymce",
"tinymce-plugin"
],
"files": [
"src"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --fix --ext .js,.vue",
"git add"
]
},
"homepage": "https://github.com/tinymce-plugin/i18n-api",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/node": "^17.0.23",
"cz-git": "^1.3.10",
"tinymce": "^6.0.3",
"ts-morph": "^14.0.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vue-tsc": "^0.29.8"
},
"dependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@vitalets/google-translate-api": "^8.0.0",
"commitizen": "^4.2.5",
"compare-func": "^2.0.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"tinymce-plugin": "^0.0.3-beta.15"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}