-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.79 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@openpathfinder/visionboard-cli",
"version": "0.0.2",
"description": "CLI to interact with visionBoard API",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "standard --ext .ts --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin \"src/**/*.ts\"",
"lint:fix": "standard --ext .ts --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin \"src/**/*.ts\" --fix",
"type:check": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"bin": {
"visionboard": "dist/index.js"
},
"keywords": [
"visionboard",
"cli",
"api"
],
"author": "Ulises Gascón",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "24.0.3",
"@types/validator": "13.15.2",
"@typescript-eslint/eslint-plugin": "8.34.1",
"@typescript-eslint/parser": "8.34.1",
"jest": "29.7.0",
"standard": "17.1.2",
"ts-jest": "29.4.0",
"tsx": "4.20.3",
"typescript": "5.8.3"
},
"dependencies": {
"@ulisesgascon/string-to-array": "2.0.0",
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"commander": "14.0.0",
"got": "14.4.7",
"nock": "14.0.5",
"validator": "13.15.15"
},
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}