-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 974 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
39
40
41
42
43
44
45
46
{
"author": {
"email": "demirci.baris38@gmail.com",
"name": "Barış DEMİRCİ",
"url": "https://bariscodes.me/"
},
"license": "GPL-3.0",
"main": "dist",
"typings": "dist",
"name": "bargs",
"version": "1.0.4",
"description": "✨ A simple argument parsing system with 0 dependencies",
"repository": {
"type": "git",
"url": "https://github.com/barbarbar338/bargs"
},
"keywords": [
"args",
"arg",
"argument",
"parser",
"parse",
"argv",
"parsing",
"argument-parser",
"arguments",
"argv-parser"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "mocha -r ts-node/register test.ts",
"format": "prettier --write ."
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}