-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.83 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": "@picgo/i18n",
"version": "1.0.0",
"description": "i18n tool",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w -p .",
"build": "tsc -p . && rollup -c",
"lint": "eslint ./src{/,/**/}*.ts",
"lint:fix": "eslint --fix ./src{/,/**/}*.ts",
"test": "mocha ./test/index.js",
"cz": "npm run lint && git-cz",
"release": "bump-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PicGo/i18n.git"
},
"author": "Spades-S",
"license": "MIT",
"bugs": {
"url": "https://github.com/PicGo/i18n/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"commitlint": {
"extends": [
"./node_modules/@picgo/bump-version/commitlint-picgo"
]
},
"homepage": "https://github.com/PicGo/i18n#readme",
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@picgo/bump-version": "^1.1.2",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"commitizen": "^4.2.4",
"conventional-changelog": "^3.1.25",
"cz-customizable": "^6.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.4"
},
"dependencies": {
"chalk": "4.1.2",
"tslib": "^2.3.1"
}
}