-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.86 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
{
"name": "yeti",
"productName": "yeti",
"version": "0.1.4",
"author": "Mark A. Jensen",
"private": true,
"description": "Data object editor with YAML flavor",
"main": "main.js",
"repository": "https://github.com/CBIIT/yedit",
"build": {
"appId": "us.fortinbras.yeti",
"afterSign": "./afterSignHook.js",
"mac": {
"category": "public.app-category.developer-tools",
"target": "default",
"icon": "assets/app-icon/mac/AppIcon.icns",
"entitlements": "assets/yeti.entitlements.darwin.plist",
"provisioningProfile": "assets/yetiprofile.provisionprofile",
"type": "distribution",
"minimumSystemVersion": "10.14",
"hardenedRuntime": true
},
"win": {
"target": "zip",
"icon": "assets/app-icon/win/yeti-256x256.ico"
}
},
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"test": "mocha && standard"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"d3": "^5.14.2",
"debug": "~2.6.9",
"electron-log": "^2.2.14",
"electron-pug": "^2.0.0",
"electron-settings": "^3.0.7",
"electron-shortcut-normalizer": "^1.0.0",
"glob": "^7.1.6",
"highlight.js": "^10.4.1",
"jquery": "^3.5.0",
"pug": "~3.0.1",
"update-electron-app": "^1.1.1",
"yaml": "^1.7.2"
},
"devDependencies": {
"@octokit/rest": "^16.35.2",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"check-for-leaks": "^1.2.1",
"devtron": "^1.3.0",
"electron": "^11.5.0",
"electron-builder": "^21.2.0",
"electron-notarize": "^0.2.1",
"husky": "^0.14.3",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.0.2",
"request": "^2.70.0",
"rimraf": "^2.5.2",
"signcode": "^0.5.0",
"spectron": "^5.0.0",
"standard": "^8.2.0"
},
"standard": {
"env": {
"mocha": true
}
}
}