-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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": "axios-rest-resource",
"version": "0.6.0",
"description": "Schema-based HTTP client powered by axios. Built with Typescript. Heavily inspired by AngularJS' $resource.",
"keywords": [
"axios",
"rest",
"resource",
"request",
"ajax",
"api",
"schema"
],
"main": "dist/index.js",
"scripts": {
"test": "npx jest -i",
"compile": "npx rimraf ./dist && npx tsc -p ./tsconfig.prod.json",
"lint": "npx tsc -p ./tsconfig.json --noEmit && npx tslint -c ./tslint.json -p ./tsconfig.json",
"prepack": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aigoncharov/axios-rest-resource.git"
},
"author": "Andrey Goncharov ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/aigoncharov/axios-rest-resource/issues"
},
"homepage": "https://github.com/aigoncharov/axios-rest-resource#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/moxios": "^0.4.9",
"@types/node": "^22.9.0",
"axios": "^1.7.7",
"doctoc": "^2.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"moxios": "^0.4.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.2.4"
},
"peerDependencies": {
"axios": "^0.21.0"
}
}