-
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) · 1020 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1020 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": "@statebait/melt",
"version": "0.0.3",
"main": "index.js",
"author": "Mohamed Shadab (https://statebait.github.io)",
"license": "GPL-3.0-or-later",
"description": "Melt your files and folders on Windows!",
"repository": {
"type": "git",
"url": "git+https://github.com/statebait/melt.git"
},
"bugs": {
"url": "https://github.com/statebait/melt/issues"
},
"homepage": "https://github.com/statebait/melt#readme",
"bin": {
"melt": "./build/index.js"
},
"scripts": {
"build": "tsc && nexe build/index.js -o build/bin/melt",
"start": "ts-node index.ts",
"release": "standard-version",
"prepublishOnly": "yarn build"
},
"dependencies": {
"commander": "^6.0.0",
"inquirer": "^7.0.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@types/inquirer": "^7.3.0",
"@types/node": "^12.12.8",
"@types/shelljs": "^0.8.6",
"nexe": "^3.3.2",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}