forked from FredrikNoren/ungit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.89 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
{
"name": "ungit",
"author": "Fredrik Norén <[email protected]>",
"description": "Git made easy",
"version": "1.5.7",
"ungitPluginApiVersion": "0.2.0",
"scripts": {
"start": "node ./bin/ungit",
"test": "npm run unittest && npm run clicktest",
"unittest": "mocha --config .mochatest.json",
"clicktest": "mocha --config .mochaclicktest.json",
"clicktest-parallel": "mocha-parallel-tests --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",
"electronpackage": "node ./scripts/electronpackage.js",
"electronzip": "node ./scripts/electronzip.js",
"travisnpmpublish": "node ./scripts/travisnpmpublish.js"
},
"repository": {
"type": "git",
"url": "https://github.com/FredrikNoren/ungit.git"
},
"bin": {
"ungit": "./bin/ungit",
"0ungit-credentials-helper": "./bin/credentials-helper"
},
"dependencies": {
"@primer/octicons": "~10.0.0",
"blueimp-md5": "~2.16.0",
"body-parser": "~1.19.0",
"cookie-parser": "~1.4.5",
"crossroads": "~0.12.2",
"diff2html": "~3.1.8",
"dnd-page-scroll": "0.0.4",
"express": "~4.17.1",
"express-session": "~1.17.1",
"getmac": "~5.7.0",
"hasher": "~1.2.0",
"ignore": "~5.1.8",
"jquery": "~3.5.1",
"jquery-ui": "~1.12.1",
"just-detect-adblock": "~1.0.0",
"knockout": "~3.5.1",
"latest-version": "~5.1.0",
"locks": "~0.2.2",
"lodash": "~4.17.15",
"memorystore": "~1.6.2",
"mkdirp": "~1.0.4",
"moment": "~2.26.0",
"node-cache": "~5.1.1",
"nprogress": "~0.2.0",
"open": "~7.0.4",
"passport": "~0.4.1",
"passport-local": "~1.0.0",
"raven-js": "~3.27.2",
"rc": "~1.2.8",
"rimraf": "~3.0.2",
"semver": "~7.3.2",
"serve-static": "~1.14.1",
"signals": "~1.0.0",
"snapsvg": "~0.5.1",
"socket.io": "~2.3.0",
"temp": "~0.9.1",
"winston": "~3.2.1",
"yargs": "~15.3.1"
},
"devDependencies": {
"archiver": "~4.0.1",
"browserify": "~16.5.1",
"dedent": "~0.7.0",
"electron": "~9.0.4",
"electron-packager": "~14.2.1",
"eslint": "~7.2.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "~3.1.4",
"expect.js": "~0.3.1",
"less": "~3.11.3",
"mocha": "~8.0.1",
"mocha-parallel-tests": "~2.3.0",
"nodemon": "~2.0.4",
"npm-check-updates": "~7.0.1",
"nyc": "~15.1.0",
"prettier": "~2.0.5",
"puppeteer": "~3.3.0",
"superagent": "~5.2.2",
"supertest": "~4.0.2"
},
"engines": {
"node": "^10.18.0 || >=11.14.0"
},
"license": "MIT",
"main": "public/main.js"
}