-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "github-api-promise",
"version": "1.19.0",
"description": "A node module for interfacing with the Github API",
"type": "module",
"types": "build/app.d.ts",
"exports": {
"require": "./src/app.ts",
"default": "./build/app.js"
},
"author": "Genesys",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/purecloudlabs/github-api-promise.git"
},
"dependencies": {
"axios": "^0.27.2",
"log4js": "^6.6.1"
},
"bugs": {
"url": "https://github.com/purecloudlabs/github-api-promise/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"docdash": "^0.4.0",
"jsdoc": "^4.0.0",
"rollup": "^2.78.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"octokit": "^2.0.5"
},
"scripts": {
"build": "rm -rf build && rollup -c rollup.config.js",
"generate-docs": "node ./node_modules/jsdoc/jsdoc.js -r -c jsdoc.json -R README.md",
"test": "echo \"0/0 tests passed. That's technically a perfect score. Keep up the great work!\""
},
"files": [
"build",
"src"
]
}