-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.41 KB
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
{
"name": "abra.js",
"version": "1.1.10",
"description": "A simple wrapper for fetch.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test-db": "json-server --watch ./tests/mocks/datas.json -m ./node_modules/json-server-auth --port 8082 --routes ./tests/mocks/routes.json",
"test": "tsc && nyc ./node_modules/.bin/_mocha 'test/**/*.ts'",
"lets-go": "tsc && npm version patch && npm publish",
"maybe": "tsc && npm version patch && npm publish -- beta"
},
"keywords": [
"typescript",
"javascript",
"fetch",
"axios",
"http",
"ajax",
"interceptor"
],
"author": "Thaïs Révillon <thais.r@live.fr>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Thaisrr/abra.js.git"
},
"bugs": {
"url": "https://github.com/Thaisrr/abra.js/issues"
},
"homepage": "https://github.com/Thaisrr/abra.js#readme",
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.7",
"json-server": "^0.17.1",
"json-server-auth": "^2.1.0",
"mocha": "^10.2.0",
"mocha-typescript": "^1.1.17",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1"
}
}