-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "axios-core-api",
"version": "1.0.18",
"description": "A core api instance with business logic for all CRUD methods.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"axios",
"typescript",
"api",
"client-side",
"rest"
],
"scripts": {
"build": "tsc",
"test": "ts-mocha -p tsconfig.test.json test/**/*.spec.ts",
"prepublishOnly": "tsc"
},
"author": "Bryan Brophy brybrophy@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/axios-mock-adapter": "^1.10.0",
"@types/chai": "^4.2.16",
"@types/form-data": "^2.5.0",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"axios": "^0.21.1",
"axios-mock-adapter": "^1.19.0",
"chai": "^4.3.4",
"form-data": "^4.0.0",
"mocha": "^8.3.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"axios": "^0.21.1"
},
"repository": {
"type": "git",
"url": "https://github.com/brybrophy/axios-core-api"
},
"files": [
"index.d.ts",
"index.js",
"index.js.map"
]
}