This repository was archived by the owner on Dec 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.23 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@reactway/api-builder",
"version": "1.0.1",
"description": "An easy api client builder for applications with identity.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"pretest": "tsc -p . --noEmit && tslint -p .",
"test": "jest"
},
"keywords": [
"Api",
"ApiBuilder",
"ApiClient",
"OAuth"
],
"files": [
"dist",
"**/*.md"
],
"author": "ReactWay <dev@reactway.com> (https://github.com/reactway)",
"contributors": [
"Martynas Žilinskas <martynas@quatrodev.com> (https://github.com/MartynasZilinskas)",
"Dovydas Navickas <dovydas@quatrodev.com> (https://github.com/DovydasNavickas)",
"Eimantas Dumšė <eimantas@quatrodev.com> (https://github.com/EimantasDumse)"
],
"repository": "github:reactway/api-builder",
"homepage": "https://github.com/reactway/api-builder",
"license": "MIT",
"devDependencies": {
"@types/fetch-mock": "^7.2.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.11.6",
"fetch-mock": "^7.3.1",
"istanbul-azure-reporter": "^0.1.4",
"jest": "^24.5.0",
"jest-junit": "^6.3.0",
"jest-localstorage-mock": "^2.4.0",
"node-fetch": "^2.3.0",
"simplr-tslint": "^1.0.0-alpha.14",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.3.4000"
},
"dependencies": {
"query-string": "^6.4.2",
"strict-event-emitter-types": "^2.0.0",
"tslib": "^1.9.3"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"setupFiles": [
"./config/jest/local-storage-mock.ts"
],
"collectCoverage": true,
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx)$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/__tests__/*",
"!src/index.ts"
],
"coverageReporters": [
"cobertura",
"istanbul-azure-reporter"
]
}
}