-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "go-alias",
"version": "0.5.0",
"description": "Add quick path alias for your local projects directories",
"bin": {
"go-alias": "./dist/main.js"
},
"engines": {
"node": ">= 10.13"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/lodash": "^4.14.134",
"@types/node": "^10.14.8",
"prettier": "^1.18.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.5.2",
"parcel-bundler": "^1.12.3",
"tslib": "^1.9.3"
},
"scripts": {
"build": "rm -rf ./build && tsc -p tsconfig.release.json",
"dist": "rm -rf .cache && rm -rf ./dist && npm run build && NODE_ENV=production parcel build/src/main.js --target node --log-level 4 && ./append-shebang.sh",
"start": "rm -rf ./build && tsc -p tsconfig.release.json && node ./build/src/main.js"
},
"author": "Joshua Ignacio",
"dependencies": {
"commander": "^2.20.0",
"inquirer": "^6.3.1",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11"
}
}