1
0
Fork 0
cautious-journey/package.json

106 lines
3.0 KiB
JSON
Raw Normal View History

2020-08-12 00:13:39 +00:00
{
"name": "cautious-journey",
2021-07-12 02:25:59 +00:00
"version": "0.2.0",
2020-08-12 00:13:39 +00:00
"description": "Github/Gitlab label & workflow manager",
"type": "module",
"main": "out/index.js",
"browser": "out/browser.js",
2020-08-12 00:13:39 +00:00
"directories": {
"doc": "docs",
"test": "test"
},
"author": "ssube",
"license": "MIT",
"devDependencies": {
"@apextoaster/js-utils": "0.4.0",
"@apextoaster/js-yaml-schema": "0.5.0",
2021-09-20 01:29:10 +00:00
"@gitbeaker/browser": "34.2.0",
"@gitbeaker/core": "34.2.0",
"@gitbeaker/node": "34.2.0",
2020-08-12 00:13:39 +00:00
"@istanbuljs/nyc-config-typescript": "1.0.1",
2021-09-27 22:14:41 +00:00
"@microsoft/api-documenter": "7.13.54",
"@microsoft/api-extractor": "7.18.11",
"@octokit/auth-app": "3.6.0",
"@octokit/rest": "18.12.0",
2021-08-02 00:03:04 +00:00
"@rollup/plugin-alias": "3.1.5",
"@rollup/plugin-commonjs": "20.0.0",
2020-09-07 02:12:22 +00:00
"@rollup/plugin-json": "4.1.0",
2021-08-02 00:03:04 +00:00
"@rollup/plugin-multi-entry": "4.1.0",
2021-09-27 21:43:08 +00:00
"@rollup/plugin-node-resolve": "13.0.5",
"@rollup/plugin-replace": "3.0.0",
2021-08-02 00:03:04 +00:00
"@rollup/plugin-yaml": "3.1.0",
"@types/bunyan": "1.8.7",
2021-09-22 01:24:50 +00:00
"@types/chai": "4.2.22",
"@types/chai-as-promised": "7.1.4",
"@types/js-yaml": "4.0.3",
2021-07-28 14:10:54 +00:00
"@types/mocha": "9.0.0",
"@types/seedrandom": "3.0.1",
"@types/sinon": "10.0.4",
"@types/sinon-chai": "3.2.5",
"@types/source-map-support": "0.5.4",
"@types/yargs": "16.0.4",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"bunyan": "1.8.15",
2021-09-10 03:16:49 +00:00
"c8": "7.9.0",
"chai": "4.3.4",
2020-08-12 00:13:39 +00:00
"chai-as-promised": "7.1.1",
"eslint": "7.32.0",
2020-08-12 00:13:39 +00:00
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-chai-expect": "2.2.0",
"eslint-plugin-chai-expect-keywords": "2.1.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-mocha": "9.0.0",
2020-08-12 00:13:39 +00:00
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-sonarjs": "0.10.0",
2020-08-23 18:09:52 +00:00
"esm": "3.2.25",
"js-yaml": "4.1.0",
"memfs": "3.3.0",
"mocha": "9.1.2",
"noicejs": "4.0.0",
"rollup": "2.58.0",
2020-08-23 18:09:52 +00:00
"rollup-plugin-alias": "2.2.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-multi-entry": "2.1.0",
"rollup-plugin-node-externals": "2.2.0",
"rollup-plugin-node-polyfills": "0.2.1",
2020-08-12 00:13:39 +00:00
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
2020-12-29 05:39:01 +00:00
"rollup-plugin-serve": "1.1.0",
"rollup-plugin-terser": "7.0.2",
2021-03-28 13:26:34 +00:00
"rollup-plugin-typescript2": "0.30.0",
2020-08-23 18:09:52 +00:00
"rollup-plugin-uglify": "6.0.4",
2020-08-12 00:13:39 +00:00
"rollup-plugin-yaml": "2.0.0",
2020-08-23 18:09:52 +00:00
"seedrandom": "3.0.5",
2021-07-28 14:10:54 +00:00
"sinon": "11.1.2",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.20",
"standard-version": "9.3.2",
"typescript": "4.3.5",
2020-12-29 05:48:28 +00:00
"yargs": "16.2.0"
},
"husky": {
"hooks": {
"pre-commit": "make"
}
},
"dependencies": {
"node-fetch": "^3.0.0"
2020-08-22 13:52:51 +00:00
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bin": {
"cautious-journey": "out/index.js"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"scripts/*",
"test/**"
]
2020-08-12 00:13:39 +00:00
}
}