-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.46 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": "git-log-nodejs",
"version": "0.5.0",
"description": "git-log-nodejs is a tool to get git logs.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "rollup --config -w",
"build": "rollup --config",
"lint": "npm-run-all lint:*",
"lint:js": "eslint -c .eslintrc.json --ext .ts .",
"lint:dts": "dtslint types",
"cover": "jest --collectCoverage true",
"test": "jest",
"test:ci": "jest --ci"
},
"keywords": [
"Git",
"log",
"Node.js"
],
"author": {
"name": "tkskto",
"url": "https://github.com/tkskto/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkskto/git-log-nodejs.git"
},
"license": "GNU General Public License v2.0",
"files": [
"dist",
"types"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.0.2",
"@rollup/plugin-typescript": "8.2.3",
"@types/jest": "26.0.24",
"@types/node": "16.4.1",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"dtslint": "4.1.3",
"eslint": "7.31.0",
"husky": "7.0.1",
"jest": "27.0.6",
"lint-staged": "11.1.0",
"npm-run-all": "4.1.5",
"rollup": "2.53.3",
"rollup-plugin-license": "2.5.0",
"ts-jest": "27.0.4",
"typescript": "4.3.5"
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
}
}