-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "parse-opt-args",
"version": "0.2.2",
"description": "Parser for command-line-style options in strings",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"prepack": "yarn build",
"clean": "rm -rf dist/*",
"build": "yarn clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wakfi/parse-opt-args.git"
},
"author": "Walker Gray <walkergraydev@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wakfi/parse-opt-args/issues"
},
"homepage": "https://github.com/wakfi/parse-opt-args#readme",
"packageManager": "yarn@3.2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"typescript": "^4.6.3"
}
}