forked from FredrikNoren/ungit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.98 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
{
"name": "ungit",
"author": "Fredrik Norén <[email protected]>",
"description": "Git made easy",
"version": "1.5.21",
"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 . bin/*",
"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": "~17.8.0",
"blueimp-md5": "~2.19.0",
"body-parser": "~1.20.1",
"bootstrap": "~3.4.1",
"cookie-parser": "~1.4.6",
"crossroads": "~0.12.2",
"diff2html": "~3.4.22",
"dnd-page-scroll": "0.0.4",
"express": "~4.18.2",
"express-session": "~1.17.3",
"getmac": "~5.20.0",
"hasher": "~1.2.0",
"ignore": "~5.2.0",
"jquery": "~3.6.1",
"jquery-ui": "~1.13.2",
"just-detect-adblock": "~1.1.0",
"knockout": "~3.5.1",
"latest-version": "~7.0.0",
"lodash": "~4.17.21",
"memorystore": "~1.6.7",
"mkdirp": "~1.0.4",
"moment": "~2.29.4",
"node-cache": "~5.1.2",
"node-watch": "~0.7.3",
"nprogress": "~0.2.0",
"open": "~8.4.0",
"p-limit": "~4.0.0",
"passport": "~0.6.0",
"passport-local": "~1.0.0",
"raven-js": "~3.27.2",
"rc": "~1.2.8",
"rimraf": "~3.0.2",
"semver": "~7.3.8",
"serve-static": "~1.15.0",
"signals": "~1.0.0",
"snapsvg": "~0.5.1",
"socket.io": "~4.5.3",
"temp": "~0.9.4",
"tsify": "~5.0.4",
"typescript": "~4.8.4",
"winston": "~3.8.2",
"yargs": "~17.6.1"
},
"devDependencies": {
"@homer0/prettier-plugin-jsdoc": "~5.1.5",
"archiver": "~5.3.1",
"browserify": "~17.0.0",
"dedent": "~0.7.0",
"electron": "~21.2.2",
"electron-packager": "~17.1.1",
"eslint": "~8.26.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-mocha": "~10.1.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~4.2.1",
"exorcist": "~2.0.0",
"expect.js": "~0.3.1",
"less": "~4.1.3",
"mocha": "~10.1.0",
"nodemon": "~2.0.20",
"npm-check-updates": "~16.3.16",
"nyc": "~15.1.0",
"portfinder": "~1.0.32",
"prettier": "~2.7.1",
"puppeteer": "~19.2.1",
"superagent": "~8.0.3",
"supertest": "~6.3.1"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"main": "public/main.js"
}