-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.5 KB
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
{
"name": "androidjs-builder",
"description": "",
"version": "2.3.2",
"license": "MIT",
"author": {
"name": "Pankaj Devesh",
"email": "pankajdevesh3@gmail.com"
},
"scripts": {
"clear": "rm -rf dist/",
"clear:all": "rm -rf node_modules/ && npm run clear",
"test": "jest",
"start": "tsc && node dist/index.js",
"dev": "ts-node src/bin.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"postversion": "git push --tags",
"docs": "./node_modules/.bin/typedoc.cmd --out dist/docs --mode modules ./src/"
},
"bin": {
"androidjs": "./dist/src/bin.js"
},
"dependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^12.11.5",
"adm-zip": "^0.4.14",
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"find-java-home": "^1.1.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.5",
"invalidate-module": "^1.0.0",
"js-yaml": "^3.13.1",
"list-github-dir-content": "^2.0.0",
"modify-xml": "^0.2.0",
"ora": "^4.0.2",
"replace-in-files": "^2.0.3",
"request": "^2.88.2",
"semver": "^7.1.3",
"superagent": "^5.2.2",
"ts-node": "^8.4.1",
"typedoc": "^0.16.10",
"typescript": "^3.6.4",
"xml2js": "^0.4.23",
"yargs": "^14.2.0",
"commander": "^6.0.0"
},
"maintainers": [],
"devDependencies": {
"jest": "^25.1.0"
},
"repository": {
"type": "git",
"url": "git@github.com:deveshpankaj/androidjs-builder"
},
"files": [
"src",
"package.json",
"tsconfig.json"
],
"keywords": []
}