mirror of
https://github.com/bendtherules/github-delete-unused-repos.git
synced 2026-08-18 13:52:59 +00:00
Initial commit
Contains basic working logic to find unused repos and show in console
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"name": "github-delete-unused-repos",
|
||||
"version": "0.0.0",
|
||||
"description": "github-delete-unused-repos",
|
||||
"license": "MIT",
|
||||
"repository": "",
|
||||
"author": {
|
||||
"name": "",
|
||||
"email": "",
|
||||
"url": ""
|
||||
},
|
||||
"keywords": [
|
||||
""
|
||||
],
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"typings": "lib/index.d.ts",
|
||||
"scripts": {
|
||||
"clean": "rimraf lib && rimraf coverage",
|
||||
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
|
||||
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
|
||||
"prepare": "npm run build",
|
||||
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
|
||||
"build": "tsc --pretty && webpack",
|
||||
"dev": "webpack-dev-server --progress --open-page dist/",
|
||||
"demo": "npm run build && http-server dist -o",
|
||||
"test": "jest",
|
||||
"coverage": "jest --coverage",
|
||||
"watch": "npm run build -- --watch",
|
||||
"watch:test": "jest --watch"
|
||||
},
|
||||
"dependencies": {
|
||||
"@octokit/rest": "^15.6.2",
|
||||
"octonode": "^0.9.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "^22.0.1",
|
||||
"@types/node": "^8.0.0",
|
||||
"babel-loader": "^7.1.2",
|
||||
"babel-preset-env": "^1.6.1",
|
||||
"babel-preset-stage-2": "^6.24.1",
|
||||
"copy-webpack-plugin": "^4.4.1",
|
||||
"coveralls": "^2.0.0",
|
||||
"http-server": "^0.11.1",
|
||||
"jest": "^22.0.4",
|
||||
"jest-environment-node-debug": "^2.0.0",
|
||||
"prettier": "^1.5.2",
|
||||
"rimraf": "^2.0.0",
|
||||
"ts-jest": "^22.0.1",
|
||||
"ts-loader": "^3.4.0",
|
||||
"ts-node": "^3.2.0",
|
||||
"tslint": "^5.0.0",
|
||||
"tslint-config-prettier": "^1.1.0",
|
||||
"typescript": "^2.3.0",
|
||||
"webpack": "^3.10.0",
|
||||
"webpack-dev-server": "^2.11.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
},
|
||||
"jest": {
|
||||
"transform": {
|
||||
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
||||
},
|
||||
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
|
||||
"moduleFileExtensions": [
|
||||
"ts",
|
||||
"js"
|
||||
],
|
||||
"testEnvironment": "node",
|
||||
"mapCoverage": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user