-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
58
59
{
"type": "module",
"name": "@trolxu/node-git",
"version": "1.0.4",
"description": "Simple implementation of Git filesystem in Node.js",
"main": "build/index.min.js",
"bin": {
"node-git": "build/index.min.js"
},
"scripts": {
"build": "rollup --config",
"watch": "rollup -cw",
"lint": "eslint",
"lint:fix": "npx eslint --fix .",
"prepare": "husky"
},
"keywords": [
"cli",
"git",
"file versioning"
],
"author": "Hubert Lipiński <hubertlipinskipl@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/ini": "^4.1.1",
"@types/node": "^20.14.2",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"rollup": "^4.18.0",
"typescript-eslint": "^8.0.0-alpha.10"
},
"dependencies": {
"commander": "^12.1.0",
"glob": "^10.4.2",
"ini": "^4.1.3"
},
"lint-staged": {
".ts": [
"eslint --quiet --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/HubertLipinski/node-git.git"
},
"bugs": {
"url": "https://github.com/HubertLipinski/node-git/issues"
},
"homepage": "https://github.com/HubertLipinski/node-git#readme"
}