-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
57
{
"name": "synopt",
"version": "0.8.1",
"sideEffects": false,
"description": "Command line options package",
"type": "module",
"main": "dist/synopt.js",
"types": "dist/synopt.d.ts",
"files": [
"./dist/synopt.js",
"./dist/synopt.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc --declaration",
"clean": "rm -rf ./dist/*",
"dev": "tsc --watch",
"lint": "npx eslint ./src",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "tsc --declaration && NODE_OPTIONS=--experimental-vm-modules npx jest dist"
},
"keywords": [
"options",
"option",
"parser",
"argument",
"args",
"argv",
"cli",
"flags",
"shell",
"command",
"terminal"
],
"author": "Florian Ebeling <[email protected]>",
"homepage": "https://github.com/febeling/synopt",
"repository": {
"type": "git",
"url": "github.com:febeling/synopt"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"@jest/globals": "^29.7.0"
},
"dependencies": {}
}