-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.51 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
{
"name": "electron-workshop",
"version": "0.1.0",
"description": "Workshop Electron Nightclazz Zenika",
"main": "src/main.js",
"scripts": {
"start": "gulp",
"dev": "gulp --debug",
"lint": "standard",
"less": "gulp less",
"test": "mocha src/tests && npm run lint",
"package": "echo \"TODO (Etape 8): Utiliser electron-packager pour générer l'éxécutable de votre application\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/frinyvonnick/electron-workshop.git"
},
"keywords": [
"electron-app",
"electron"
],
"author": "Yvonnick Frin <[email protected]>",
"contributors": [
"Eric Briand <[email protected]>",
"Philippe Charrière <[email protected]>"
],
"files": [
"index.js",
"index.html",
"index.css"
],
"dependencies": {
"electron-debug": "1.0.0",
"electron-json-storage": "^2.0.1",
"jimp": "0.2.27",
"glob": "7.0.5"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"devtron": "1.1.0",
"electron": "1.4.2",
"electron-connect": "0.6.0",
"electron-packager": "8.0.0",
"gulp": "3.9.1",
"gulp-less": "3.1.0",
"less": "2.7.1",
"mocha": "^3.1.2",
"spectron": "3.4.0",
"standard": "8.2.0"
},
"standard": {
"globals": [
"Notification"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/frinyvonnick/electron-workshop/issues"
},
"homepage": "https://github.com/frinyvonnick/electron-workshop#readme"
}