UNPKG

1.54 kBJSONView Raw
1{
2 "name": "repository-provider",
3 "version": "19.2.2",
4 "publishConfig": {
5 "access": "public"
6 },
7 "sideEffects": false,
8 "type": "module",
9 "main": "./src/provider.mjs",
10 "exports": {
11 ".": "./src/provider.mjs"
12 },
13 "description": "abstract interface to git repository providers like github bitbucket",
14 "keywords": [
15 "git",
16 "repository-provider"
17 ],
18 "contributors": [
19 {
20 "name": "Markus Felten",
21 "email": "markus.felten@gmx.de"
22 }
23 ],
24 "license": "BSD-2-Clause",
25 "scripts": {
26 "test": "ava --timeout 2m",
27 "cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
28 "docs": "documentation readme ./src/provider.mjs --section=API",
29 "lint": "documentation lint ./src/provider.mjs"
30 },
31 "dependencies": {
32 "loglevel-mixin": "^5.0.3"
33 },
34 "devDependencies": {
35 "ava": "^3.8.2",
36 "c8": "^7.1.2",
37 "documentation": "^13.0.0",
38 "repository-provider-test-support": "github:arlac77/repository-provider-test-support",
39 "semantic-release": "^17.0.8"
40 },
41 "engines": {
42 "node": ">=12.16.3"
43 },
44 "repository": {
45 "type": "git",
46 "url": "https://github.com/arlac77/repository-provider.git"
47 },
48 "bugs": {
49 "url": "https://github.com/arlac77/repository-provider/issues"
50 },
51 "homepage": "https://github.com/arlac77/repository-provider#readme",
52 "template": {
53 "inheritFrom": [
54 "arlac77/template-arlac77-github",
55 "arlac77/template-esm-only"
56 ]
57 }
58}