-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "@formo/cli",
"version": "0.2.0",
"packageManager": "pnpm@10.28.2",
"description": "Formo API CLI — query profiles and analytics data",
"bin": {
"formo": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "mocha",
"test:watch": "mocha --watch"
},
"dependencies": {
"axios": "^1.7.0",
"incur": "^0.3.4"
},
"overrides": {
"serialize-javascript": ">=7.0.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^20.0.0",
"chai": "^6.2.2",
"dotenv": "^17.4.1",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.58.1"
},
"pnpm": {
"overrides": {
"serialize-javascript": ">=7.0.5"
}
}
}