-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.91 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
{
"name": "@yazilim-vip/howto-script",
"version": "0.10.3",
"description": "HowTo",
"main": "build/index.js",
"bin": {
"howto-batch": "bin/cli-batch.js",
"howto-service": "bin/cli-service.js"
},
"files": [
"build/**/*",
"bin/*.js"
],
"scripts": {
"start:service": "ts-node-dev src/ServiceMain.ts",
"start:batch": "ts-node-dev src/BatchMain.ts",
"lint": "eslint . --ext .ts",
"build": "run-s build:clean build:compile",
"build:clean": "rm -rf build",
"build:compile": "npx tsc",
"package": "npm run build && run-p package:linux package:mac package:win",
"package:linux": "OS=linux;rimraf bundle/howto-script-$OS-x64;pkg ./bin/cli.js --target node14-$OS-x64 -o bundle/howto-script-$OS-x64",
"package:mac": "OS=macos;rimraf bundle/howto-script-$OS-x64;pkg ./bin/cli.js --target node14-$OS-x64 -o bundle/howto-script-$OS-x64",
"package:win": "OS=win;rimraf bundle/howto-script-$OS-x64;pkg ./bin/cli.js --target node14-$OS-x64 -o bundle/howto-script-$OS-x64",
"docker": "run-s build package:linux docker:image docker:push",
"docker:image": "cross-var docker build -f Dockerfile -t yazilimvip/howto-script:$npm_package_version --no-cache .",
"docker:push": "cross-var docker push yazilimvip/howto-script:$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yazilim-vip/howto-script.git"
},
"author": "Mehmet Arif Emre Şen",
"license": "MIT",
"bugs": {
"url": "https://github.com/yazilim-vip/howto-script/issues"
},
"homepage": "https://github.com/yazilim-vip/howto-script#readme",
"dependencies": {
"child_process": "^1.0.2",
"getopts": "^2.2.5",
"glob": "^7.1.6"
},
"optionalDependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"http-errors": "~1.6.3"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/glob": "^7.1.3",
"@types/http-errors": "^1.8.0",
"@types/node-getopt": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"cross-var": "^1.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^4.0.1",
"npm-run-all": "^4.1.5",
"pkg": "^4.4.9",
"prettier": "^2.2.1",
"debug": "~2.6.9",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
}
}