-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.55 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "Markbot",
"version": "8.2.3",
"license": "GPL",
"description": "An automated marking application for code projects in the Algonquin College Graphic Design program.",
"author": "Thomas J Bradley <hey@thomasjbradley.ca>",
"homepage": "https://github.com/thomasjbradley/markbot",
"bugs": "https://github.com/thomasjbradley/markbot/issues",
"private": true,
"main": "markbot.js",
"dependencies": {
"axe-core": "^3.1.2",
"calipers": "^2.0.1",
"calipers-jpeg": "^2.0.0",
"calipers-png": "^2.0.0",
"calipers-svg": "^2.0.0",
"cheerio": "^1.0.0-rc.2",
"css": "^2.2.4",
"css-select": "^2.0.0",
"electron-is": "^3.0.0",
"entities": "^1.1.1",
"eslint": "^5.6.1",
"exif": "^0.6.0",
"finalhandler": "^1.1.1",
"fix-path": "^2.1.0",
"front-matter": "^2.3.0",
"get-port": "^4.0.0",
"git-commits": "^1.2.0",
"git-state": "^4.1.0",
"glob": "^7.1.3",
"htmlcs": "^0.4.1",
"image-size": "^0.6.3",
"jimp": "^0.5.3",
"js-beautify": "1.7.5",
"js-yaml": "^3.12.0",
"markdownlint": "^0.11.0",
"merge-objects": "^1.0.5",
"mime-types": "^2.1.20",
"mkdirp": "^0.5.1",
"node-dir": "^0.1.16",
"parse5": "^5.1.0",
"parse5-htmlparser2-tree-adapter": "^5.1.0",
"png-itxt": "^2.0.0",
"portfinder": "^1.0.17",
"request": "^2.88.0",
"string": "^3.3.3",
"stylelint": "^9.6.0",
"stylelint-declaration-block-no-ignored-properties": "^1.1.0",
"webcoach": "^2.2.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^3.0.2",
"electron-builder": "^20.28.4"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"debug": "NODE_ENV=development electron markbot.js",
"start": "electron markbot.js",
"pack-files": "xattr -cr .",
"pack-bg": "tiffutil -cathidpicheck ./build/background.png ./build/background@2x.png -out ./build/background.tiff",
"pack-mac": "npm run pack-files && build -m --dir",
"pack-win": "npm run pack-files && build -w --dir",
"pack": "npm run pack-files && build -mw --dir",
"build-mac": "npm run pack-bg && npm run pack-files && build -m",
"build-win": "npm run pack-files && build -w",
"build": "npm run pack-bg && npm run pack-files && build -mw",
"hash-passcode": "node ./scripts/hash-passcode.js",
"gen-https-cert": "./scripts/gen-https-cert.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/thomasjbradley/markbot.git"
},
"build": {
"appId": "ca.thomasjbradley.markbot",
"copyright": "© Thomas J Bradley",
"productName": "Markbot",
"compression": "maximum",
"asarUnpack": [
"vendor"
],
"mac": {
"target": "dmg",
"category": "public.app-category.developer-tools",
"extendInfo": {
"CFBundleDocumentTypes": [
{
"CFBundleTypeRole": "Editor",
"LSHandlerRank": "Alternate",
"LSItemContentTypes": [
"public.directory",
"com.apple.bundle",
"com.apple.resolvable"
]
}
]
}
},
"win": {
"target": "nsis"
},
"nsis": {
"perMachine": true
},
"dmg": {
"title": "Install Markbot",
"iconSize": 100,
"window": {
"x": 200,
"y": 200
},
"contents": [
{
"x": 494,
"y": 270,
"type": "link",
"path": "/Applications"
},
{
"x": 210,
"y": 270,
"type": "file"
}
]
}
}
}