forked from nullcc/ts-retrofit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
62
{
"name": "ts-retrofit-browser",
"version": "1.11.0",
"description": "A declarative and axios based retrofit implementation for JavaScript and TypeScript. Multipart works with browser",
"repository": {
"type": "git",
"url": "git+https://github.com/remalkoil/ts-retrofit.git"
},
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"keywords": [
"retrofit",
"ts",
"js",
"axios"
],
"bugs": {
"url": "https://github.com/remalkoil/ts-retrofit/issues"
},
"scripts": {
"test": "jest --coverage",
"tslint": "tslint -c tslint.json --project . src/**/*.ts test/**/*.test.ts",
"build": "tsc",
"make-badges": "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.19.0",
"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": "^24.9.0",
"multer": "^1.4.2",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.7.5"
},
"homepage": "https://github.com/remalkoil/ts-retrofit#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}