generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "linear-app-create-issue-action",
"version": "1.2.0",
"private": true,
"description": "GitHub Action to create an Issue for Linear.app.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"build-package": "npm-run-all -l -s build package",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test:ci": "jest --ci --runInBand --coverage",
"check": "npm-run-all -s build -p test:ci lint",
"release": "shipjs prepare",
"test-lint": "npm-run-all -l -p test:ci lint",
"prerelease": "npm-run-all -l -p build-package test-lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/korosuke613/linear-app-create-issue-action.git"
},
"keywords": [
"actions",
"node",
"linear-app"
],
"author": "Futa Hirakoba",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.7",
"@linear/sdk": "^1.15.0",
"yaml-front-matter": "^4.1.1"
},
"devDependencies": {
"@cybozu/eslint-config": "^13.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.5",
"@types/yaml-front-matter": "^4.1.0",
"@typescript-eslint/parser": "^4.23.0",
"@vercel/ncc": "^0.28.5",
"eslint": "^7.26.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"jest-circus": "^27.0.6",
"jest-junit": "^12.2.0",
"js-yaml": "^4.1.0",
"nock": "^13.0.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"shipjs": "^0.23.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}