-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 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
{
"name": "@formo/cli",
"version": "1.0.0",
"packageManager": "pnpm@11.1.2",
"description": "Formo API CLI — query profiles and analytics data",
"repository": {
"type": "git",
"url": "git+https://github.com/getformo/cli.git"
},
"homepage": "https://github.com/getformo/cli#readme",
"bugs": {
"url": "https://github.com/getformo/cli/issues"
},
"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.15.2",
"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"
}
}
}