-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 854 Bytes
/
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
{
"name": "case-converter-cli",
"version": "0.1.1",
"description": "Quick and simple text case conversion in the terminal",
"bin": {
"ccc": "bin/index.js"
},
"main": "./out/index.js",
"files": [
"out/**/*.js",
"!**/*.test.js"
],
"scripts": {
"test": "jest --coverage",
"app": "npm run build && npm run execute",
"build": "tsc",
"execute": "node ./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cl0wng1rl/ccc.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cl0wng1rl/ccc/issues"
},
"homepage": "https://github.com/cl0wng1rl/ccc#readme",
"devDependencies": {
"@types/jest": "^29.0.3",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"yargs": "^17.6.2"
}
}