-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
91 lines (91 loc) · 2.12 KB
/
package.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "actions-toolkit",
"version": "6.0.1",
"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": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "tsc --noEmit -p tests && jest --coverage && npm run lint",
"test:update": "tsc --noEmit -p tests && jest --coverage -u && npm run lint",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonEtco/actions-toolkit.git"
},
"keywords": [
"github",
"github actions",
"typescript",
"github api"
],
"author": "Jason Etcovitch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonEtco/actions-toolkit/issues"
},
"homepage": "https://github.com/JasonEtco/actions-toolkit#readme",
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.0.1",
"nock": "^12.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@octokit/rest": "^17.9.0",
"@types/flat-cache": "^2.0.0",
"@types/minimist": "^1.2.0",
"@types/signale": "^1.4.1",
"enquirer": "^2.3.5",
"minimist": "^1.2.5",
"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
}
}
}
}