-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
41
42
43
44
45
46
47
{
"name": "argcat",
"version": "1.0.2",
"description": "The simplest CLI arguments parser.",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.js",
"index.mjs",
"index.d.ts"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && mv index.js index.mjs && tsc --project tsconfig.build.json --module CommonJS",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smikhalevski/argcat.git"
},
"keywords": [
"cli",
"arguments"
],
"author": "Savva Mikhalevski <smikhalevski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smikhalevski/argcat/issues"
},
"homepage": "https://github.com/smikhalevski/argcat#readme",
"devDependencies": {
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}