-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
52 lines (52 loc) · 1.39 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
52
{
"name": "ts-retrofit",
"version": "1.19.0",
"description": "A declarative and axios based retrofit implementation for JavaScript and TypeScript.",
"repository": "https://github.com/nullcc/ts-retrofit",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"keywords": [
"retrofit",
"ts",
"js",
"axios"
],
"bugs": "https://github.com/nullcc/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"
},
"author": "Ethan Zhang",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm test && npm run make-badges && git add README.md"
}
},
"dependencies": {
"axios": "^0.21.1",
"form-data": "^2.5.1",
"qs": "^6.8.0"
},
"devDependencies": {
"@olavoparno/jest-badges-readme": "^1.4.0",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/multer": "^1.3.10",
"@types/qs": "^6.5.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"husky": "^3.1.0",
"jest": "^29.5.0",
"multer": "^1.4.2",
"ts-jest": "^29.1.0",
"tslint": "^5.19.0",
"typescript": "^4.9.5"
}
}