forked from android-js/androidjs-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 925 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 925 Bytes
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
{
"name": "androidjs-builder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"build": "grunt build",
"watch": "tsc --watch",
"link": "npm link",
"docs": "npx typedoc --out docs src --theme default --name AndroidJS --includeVersion"
},
"bin": {
"androidjs": "./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/async": "^3.2.6",
"@types/fs-extra": "^9.0.11",
"grunt": "^1.3.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.41",
"commander": "^7.2.0",
"fs-extra": "^9.1.0",
"inquirer": "^8.0.0",
"modify-xml": "^0.2.0",
"nodegit": "^0.27.0",
"require-yml": "^2.0.0",
"winston": "^3.3.3",
"xml2js": "^0.4.23",
"yaml": "^1.10.2"
}
}