-
Notifications
You must be signed in to change notification settings - Fork 638
/
package.json
105 lines (105 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ungit",
"author": "Fredrik Norén <fredrik.jw.noren@gmail.com>",
"description": "Git made easy",
"version": "1.5.28",
"ungitPluginApiVersion": "0.2.0",
"scripts": {
"start": "node ./bin/ungit",
"inspect": "node --inspect ./source/server.js",
"test": "npm run unittest && npm run clicktest",
"unittest": "mocha --config .mochatest.json",
"clicktest": "mocha --config .mochaclicktest.json",
"coverage": "nyc npm run unittest",
"lint": "eslint .",
"format": "npm run lint -- --fix",
"build": "node ./scripts/build.js",
"watch": "nodemon -C --exec \"npm run build\" -e js,less -w public/source -w public/less -w components/ -i \"*.bundle.js\"",
"bumpdependencies": "ncu --upgrade --reject bootstrap",
"electronpackage": "node ./scripts/electronpackage.js",
"electronzip": "node ./scripts/electronzip.js"
},
"repository": {
"type": "git",
"url": "https://github.com/FredrikNoren/ungit.git"
},
"bin": {
"ungit": "./bin/ungit",
"0ungit-credentials-helper": "./bin/credentials-helper"
},
"dependencies": {
"@primer/octicons": "~19.11.0",
"blueimp-md5": "~2.19.0",
"body-parser": "~1.20.3",
"bootstrap": "~3.4.1",
"chokidar": "~3.6.0",
"cookie-parser": "~1.4.6",
"crossroads": "~0.12.2",
"diff2html": "~3.4.48",
"dnd-page-scroll": "0.0.4",
"express": "~4.21.0",
"express-session": "~1.18.0",
"getmac": "~6.6.0",
"hasher": "~1.2.0",
"ignore": "~6.0.2",
"jquery": "~3.7.1",
"jquery-ui": "~1.14.0",
"just-detect-adblock": "~1.1.0",
"knockout": "~3.5.1",
"latest-version": "~9.0.0",
"lodash": "~4.17.21",
"memorystore": "~1.6.7",
"mkdirp": "~3.0.1",
"moment": "~2.30.1",
"node-cache": "~5.1.2",
"nprogress": "~0.2.0",
"open": "~10.1.0",
"p-limit": "~6.1.0",
"passport": "~0.7.0",
"passport-local": "~1.0.0",
"raven-js": "~3.27.2",
"rc": "~1.2.8",
"rimraf": "~5.0.9",
"semver": "~7.6.3",
"serve-static": "~1.16.2",
"signals": "~1.0.0",
"snapsvg": "~0.5.1",
"socket.io": "~4.8.0",
"temp": "~0.9.4",
"tsify": "~5.0.4",
"typescript": "~5.6.2",
"winston": "~3.14.2",
"yargs": "~17.7.2"
},
"devDependencies": {
"@eslint/js": "~9.11.1",
"@homer0/prettier-plugin-jsdoc": "~9.0.2",
"archiver": "~7.0.1",
"browserify": "~17.0.0",
"dedent": "~1.5.3",
"electron": "~32.1.2",
"electron-packager": "~17.1.2",
"eslint": "~9.11.1",
"eslint-plugin-mocha": "~10.5.0",
"eslint-plugin-n": "~17.10.3",
"eslint-plugin-prettier": "~5.2.1",
"exorcist": "~2.0.0",
"expect.js": "~0.3.1",
"globals": "~15.10.0",
"less": "~4.2.0",
"mocha": "~10.7.3",
"nodemon": "~3.1.7",
"npm-check-updates": "~17.1.3",
"nyc": "~17.1.0",
"portfinder": "~1.0.32",
"prettier": "~3.3.3",
"puppeteer": "~23.5.0",
"superagent": "~10.1.0",
"supertest": "~7.0.0"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"main": "public/main.js"
}