-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 858 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
{
"name": "genbenchdroid",
"version": "1.1.0",
"description": "GenBenchDroid is a tool that is able to automatically generate Android applications which can be used as benchmark cases for Android app analysis tool evaluation.",
"main": "app.js",
"scripts": {
"test": "jest --verbose --silent"
},
"nodemonConfig": {
"ignore": [
"generated/*"
]
},
"jest": {
"setupFiles": [
"dotenv/config"
]
},
"keywords": [],
"author": "Stefan Schott",
"license": "ISC",
"dependencies": {
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"handlebars": "^4.7.7",
"js-beautify": "^1.13.0",
"nearley": "^2.20.1",
"xml-formatter": "^2.4.0",
"xmlbuilder2": "^2.4.0",
"yargs": "^16.1.1"
},
"devDependencies": {
"dir-compare": "^3.3.0",
"dotenv": "^10.0.0",
"jest": "^27.0.6"
}
}