forked from nullcc/ts-retrofit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "axios-retrofit",
"version": "2.0.2",
"description": "A declarative and axios based retrofit implementation for JavaScript and TypeScript.",
"repository": "https://github.com/devcsrj/ts-retrofit",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"keywords": [
"retrofit",
"ts",
"js",
"axios"
],
"bugs": "https://github.com/devcsrj/ts-retrofit/issues",
"scripts": {
"test": "jest --coverage",
"tslint": "tslint -c tslint.json --project . src/**/*.ts test/**/*.test.ts",
"build": "tsc",
"make-badges": "node_modules/.bin/jest-badges-readme",
"prepare": "npm run build",
"prepublishOnly": "npm run tslint",
"preversion": "npm run tslint",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm test && npm run make-badges && git add README.md"
}
},
"dependencies": {
"axios": "^1.7.7",
"form-data": "^4.0.0",
"qs": "^6.12.1"
},
"devDependencies": {
"@olavoparno/jest-badges-readme": "^1.5.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/qs": "^6.9.15",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"multer": "^1.4.4",
"ts-jest": "^29.1.5",
"tslint": "^5.20.1",
"typescript": "^4.9.5"
}
}