-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.61 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
{
"name": "place0-5-searcher",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/lacroixdavid1/place0-5-searcher#readme",
"scripts": {
"start": "npm run build && node ./dist/main.js",
"build": "rm -r ./dist || true && webpack --mode none",
"build:prod": "rm -r ./dist || true && webpack --mode production",
"release": "npm run build:prod && npm run pkg:all",
"pkg:all": "npm run pkg:mac & npm run pkg:win & npm run pkg:linux",
"pkg:mac": "rm ./bin/garderie-mac || true && pkg ./dist/main.js --targets node10-macos-x64 --output ./bin/garderie-mac",
"pkg:win": "rm ./bin/garderie-win.exe || true && pkg ./dist/main.js --targets node10-win-x64 --output ./bin/garderie-win.exe",
"pkg:linux": "rm ./bin/garderie-linux || true && pkg ./dist/main.js --targets node10-linux-x64 --output ./bin/garderie-linux"
},
"repository": {
"type": "git",
"url": "https://github.com/lacroixdavid1/place0-5-searcher/issues"
},
"bin": "./dist/main.js",
"main": "./dist/main.js",
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@google/maps": "0.5.5",
"chalk": "2.4.2",
"inquirer": "6.4.1",
"ora": "3.4.0",
"inquirer-autocomplete-prompt": "1.0.1"
},
"devDependencies": {
"@types/ora": "3.2.0",
"@types/chalk": "2.2.0",
"@types/google__maps": "0.5.5",
"@types/inquirer": "6.0.3",
"@types/node": "12.6.2",
"@types/request": "2.48.1",
"pkg": "4.4.0",
"ts-loader": "6.0.4",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"typescript": "3.5.3",
"webpack": "4.35.3",
"webpack-cli": "3.3.5"
}
}