-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·77 lines (77 loc) · 1.94 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
{
"name": "router-cnc-nodejs-arduino",
"version": "0.3.0",
"description": "cnc realizado con nodejs electron serialport arduino.",
"dependencies": {},
"devDependencies": {
"electron": "1.8.4",
"electron-packager": "^12.0.1",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-pug": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-docco": "^0.5.0",
"grunt-electron-packager": "0.2.1",
"grunt-mocha-test": "^0.13.2",
"grunt-shell": "^2.1.0",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^3.5.2",
"mocha": "^5.1.1",
"pug": "^2.0.0-rc.3"
},
"scripts": {
"postinstall": "cd ./app/ ; npm install",
"rebuild": "grunt buildmodule",
"start": "grunt run",
"test": "mocha ./tests/**/*.js"
},
"author": {
"name": "Marani Matias Ezequiel",
"email": "maranimatias@gmail.com"
},
"engines": {
"node": "~6.9.3",
"npm": "~4.0.5"
},
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MaraniMatias/router-cnc-nodejs-arduino"
},
"keywords": [
"cnc",
"arduino",
"electron",
"express",
"nodejs",
"serialport",
"gcode"
],
"directories": {
"buildResources": "build",
"output": "./dist",
"app": "./app"
},
"build": {
"asar": true,
"compression": "maximum",
"appId": "CNC-ino",
"app-category-type": "public.app-category.education",
"productName": "CNC-ino",
"win": {
"target": "tar.xz",
"title": "CNC-ino",
"icon": "./app/recursos/mac-win/app",
"publisher": "CNC realizado con nodejs electron serialport arduino."
},
"linux": {
"description": "CNC realizado con nodejs electron serialport arduino.",
"synopsis": "Arduino + SerialPort + NodeJS + ElectronJS + AngularJS + Semantic UI",
"executable": "CNC-ino",
"target": "deb",
"compression": "xz"
}
}
}