-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "vardict",
"version": "3.0.0",
"description": "Get a dictionary consisting of CLI arguments",
"main": "out/vardict.js",
"types": "out/vardict.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/maacpiash/vardict.git"
},
"keywords": [
"argv",
"CLI",
"Command Line Arguments",
"Dictionary"
],
"author": {
"name": "Mohammad Abdul Ahad Chowdhury",
"email": "ahad@maacpiash.com",
"url": "https://www.maacpiash.com"
},
"scripts": {
"build": "tsc",
"cleanup": "rimraf out && prettier --write \"./*.ts\" && eslint **/*.ts --fix",
"test": "tsc && node out/vardict.test.js --'full name' 'Anirudha Paul' -asl 30 false California --single --coolWithLadies false -nick-name Prasun --degrees BSc MS --friends Raiyan Akib Adar Abir Adnan Ivan Nobel --talented"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.5.0",
"@types/node": "^20.10.7",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"files": [
"out/vardict.js",
"out/vardict.d.ts",
"LICENSE",
"README.md"
]
}