-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 863 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
{
"name": "@mamoruds/cap",
"version": "0.1.1",
"description": "Simple cli arguments parser written in typescript for node/deno",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"linter": "eslint src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MamoruDS/cliap.git"
},
"keywords": [
"argument-parser",
"command-line-parser"
],
"author": "MamoruDS",
"license": "MIT",
"bugs": {
"url": "https://github.com/MamoruDS/cliap/issues"
},
"homepage": "https://github.com/MamoruDS/cliap#readme",
"devDependencies": {
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"typescript": "^4.2.3"
}
}