-
-
Notifications
You must be signed in to change notification settings - Fork 435
/
Copy pathpackage.json
44 lines (44 loc) · 996 Bytes
/
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
{
"private": true,
"name": "packager",
"version": "1.0.0",
"description": "Packager for the Arduino IDE electron application",
"main": "index.js",
"scripts": {
"prepare": "yarn test",
"package": "node index.js",
"test": "mocha \"./test/**/*.test.js\""
},
"keywords": [],
"author": "Arduino SA",
"license": "AGPL-3.0-or-later",
"dependencies": {
"7zip-min": "^1.1.1",
"@types/file-type": "^10.9.1",
"@types/temp": "^0.8.32",
"chai": "^4.2.0",
"crypto": "^1.0.1",
"dateformat": "^3.0.3",
"deepmerge": "2.01",
"depcheck": "^0.9.2",
"file-type": "^14.1.4",
"glob": "^7.1.6",
"is-ci": "^2.0.0",
"mocha": "^7.1.1",
"semver": "^7.3.2",
"shelljs": "^0.8.3",
"sinon": "^9.0.1",
"temp": "^0.9.1",
"yaml": "^1.10.2",
"yargs": "^12.0.5"
},
"engines": {
"node": ">=16.0.0 <17"
},
"mocha": {
"reporter": "spec",
"colors": true,
"watch-extensions": "js",
"timeout": 10000
}
}