-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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": "@syrus/keyhole",
"version": "1.0.0",
"description": "A CLI tool for detecting untranslated keys using i18next and @scp/in17n.",
"main": "src/main.js",
"scripts": {
"start": "npm run lint && cd src && node main",
"test": "npx nyc --reporter=lcov mocha test/**/*.test.js",
"lint": "npx eslint src --ext .json,.js --fix",
"gpr": "git pull && npm start"
},
"author": {
"name": "Nytelife26 (Tyler J. Russell)",
"email": "nytelife@protonmail.com",
"url": "https://github.com/Nytelife26"
},
"contributors": [],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.16.0",
"eslint-plugin-json": "^2.1.2",
"husky": "^4.3.6",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"semantic-release": "^17.2.4",
"sinon": "^9.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test",
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/syrus-bot/keyhole.git"
},
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/syrus-bot/keyhole/issues"
},
"homepage": "https://github.com/syrus-bot/keyhole#readme"
}