-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.79 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
{
"name": "git-commit-info",
"version": "2.0.2",
"description": "Get the info of an specific commit hash",
"main": "./dest/index.js",
"types": "./dest/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint index.ts __tests__/test.spec.ts",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rimraf dest && tsc && babel dest -d dest",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JPeer264/node-git-commit-info.git"
},
"keywords": [
"is",
"git",
"repository",
"repo",
"is-git",
"needs",
"push"
],
"author": "Jan Peer Stöcklmair",
"license": "MIT",
"bugs": {
"url": "https://github.com/JPeer264/node-git-commit-info/issues"
},
"homepage": "https://github.com/JPeer264/node-git-commit-info#readme",
"dependencies": {
"execa": "^4.0.3",
"is-git-repository": "^1.1.1",
"path-is-absolute": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.4",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-plugin-add-module-exports": "^1.0.2",
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"fs-extra": "^9.0.1",
"git-commit-count": "^1.1.3",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"rimraf": "^3.0.2",
"temp-dir": "^2.0.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6",
"uuid": "^8.2.0"
}
}