100 lines
2.5 KiB
JSON
100 lines
2.5 KiB
JSON
{
|
|
"name": "actions-toolkit",
|
|
"version": "2.2.0",
|
|
"description": "A toolkit for building GitHub Actions in Node.js",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"bin": {
|
|
"actions-toolkit": "./bin/cli.js"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/lib"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf lib && tsc -p tsconfig.json",
|
|
"lint": "tslint --project tests",
|
|
"test": "tsc --noEmit -p tests && jest --coverage && npm run lint",
|
|
"test:update": "tsc --noEmit -p tests && jest --coverage -u && npm run lint"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/JasonEtco/actions-toolkit.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"github actions",
|
|
"typescript",
|
|
"github api"
|
|
],
|
|
"author": "Jason Etcovitch <jasonetco@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/JasonEtco/actions-toolkit/issues"
|
|
},
|
|
"homepage": "https://github.com/JasonEtco/actions-toolkit#readme",
|
|
"devDependencies": {
|
|
"@types/dotenv": "^6.1.0",
|
|
"@types/jest": "^24.0.11",
|
|
"@types/js-yaml": "^3.12.0",
|
|
"@types/nock": "^9.3.1",
|
|
"@types/node": "^11.9.4",
|
|
"jest": "^24.5.0",
|
|
"nock": "^10.0.6",
|
|
"rimraf": "^2.6.3",
|
|
"standard": "^12.0.1",
|
|
"ts-jest": "^24.0.0",
|
|
"tslint": "^5.12.1",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-config-standard": "^8.0.1",
|
|
"typescript": "^3.3.3"
|
|
},
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@octokit/graphql": "^2.0.1",
|
|
"@octokit/rest": "^16.15.0",
|
|
"@types/execa": "^0.9.0",
|
|
"@types/flat-cache": "^2.0.0",
|
|
"@types/minimist": "^1.2.0",
|
|
"@types/signale": "^1.2.1",
|
|
"enquirer": "^2.3.0",
|
|
"execa": "^1.0.0",
|
|
"flat-cache": "^2.0.1",
|
|
"js-yaml": "^3.13.0",
|
|
"minimist": "^1.2.0",
|
|
"signale": "^1.4.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"setupFiles": [
|
|
"<rootDir>/tests/setup.ts"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
"<rootDir>/lib/"
|
|
],
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"js",
|
|
"json"
|
|
],
|
|
"transform": {
|
|
".+\\.tsx?$": "ts-jest"
|
|
},
|
|
"testMatch": [
|
|
"<rootDir>/tests/**/*.test.(ts|js)"
|
|
],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"babelConfig": false
|
|
}
|
|
}
|
|
}
|
|
|
|
,"_resolved": "https://registry.npmjs.org/actions-toolkit/-/actions-toolkit-2.2.0.tgz"
|
|
,"_integrity": "sha512-g/GM9weEKb8DWvjVyrOnX+eroehJj3bocxxJtOlqWY2vhCzezqn91m736xQOfNNzU6GCepoJfIGiPycec1EIxA=="
|
|
,"_from": "actions-toolkit@2.2.0"
|
|
} |