forked from LINCnil/CookieViz
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.9 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
{
"main": "browser.html",
"name": "CookieViz",
"description": "CookieViz est outil de visualisation qui permet de mesurer l'impact des cookies lors de votre propre navigation.",
"version": "2.3.0",
"nodejs": true,
"keywords": [
"cookie",
"CNIL",
"CookieViz"
],
"window": {
"title": "CookieViz",
"icon": "icons/browser-128x128.png",
"toolbar": false,
"frame": true,
"width": 1024,
"height": 700,
"min_width": 250,
"min_height": 250
},
"webkit": {
"plugin": true
},
"repository": {
"type": "git",
"url": "https://github.com/LINCnil/CookieViz"
},
"author": "Laboratoire de l'Innovation de la CNIL (LINC)",
"license": "LGPL3",
"bugs": {
"url": "https://github.com/LINCnil/CookieViz/issues"
},
"dependencies": {
"ads.txt": "^0.4.0",
"get-website-favicon": "0.0.7",
"iso-639-1": "^2.1.1",
"jszip": "^3.5.0",
"psl": "^1.4.0"
},
"devDependencies": {
"nwjs-builder-phoenix": "^1.15.0"
},
"scripts": {
"dist": "build --tasks win-x86,win-x64,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .",
"start": "run --x64 --mirror https://dl.nwjs.io/ ."
},
"build": {
"appId": "cnil.CookieViz",
"nwVersion": "0.64.1",
"packed": true,
"targets": [
"zip",
"nsis7z"
],
"strippedProperties": [
"build"
],
"outputPattern": "${NAME} ${VERSION} ${PLATFORM} ${ARCH}",
"win": {
"productName": "CookieViz",
"companyName": "CNIL",
"copyright": "CNIL",
"icon": "./icons/browser.ico"
},
"mac": {
"displayName": "CookieViz",
"copyright": "CNIL",
"icon": "./icons/browser.icns",
"plistStrings": {
"CFBundleIdentifier": "cnil.CookieViz",
"CFBundleDocumentTypes": []
}
},
"nsis": {
"installDirectory": "$APPDATA\\${_COMPANYNAME}\\${_APPNAME}",
"diffUpdaters": true
}
}
}