-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
{
"name": "apiminer",
"version": "1.0.1-beta.1",
"description": "Automatically generate Postman collections from your frontend codebase.",
"author": "Munaf A. Mahdi <url:munafio.com>",
"license": "MIT",
"keywords": [
"postman",
"api",
"collection",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/munafio/apiminer.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "node build.js",
"start": "node dist/index.js",
"dev": "tsc --watch",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky"
},
"bin": {
"apiminer": "dist/index.js"
},
"dependencies": {
"@babel/parser": "^7.16.0",
"@babel/traverse": "^7.16.0",
"@babel/types": "^7.16.0",
"axios": "^1.7.6",
"commander": "^12.1.0",
"kleur": "^4.1.5"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/babel__traverse": "^7.20.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}