-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "canvas-kit-actions",
"version": "0.0.0",
"private": true,
"description": "Canvas Kit Github Actions",
"main": "lib/actions/verify-pull-request.js",
"scripts": {
"build:tsc": "tsc -p tsconfig.build.json",
"build:queries": "ts-graphql-plugin typegen",
"build:ncc": "ncc build --source-map --license licenses.txt -o dist/lib src/lib.ts && cp -r lib/* dist && rm dist/lib.js",
"build": "npm run build:queries && npm run build:tsc && npm run build:ncc",
"clean": "rm -rf dist && rm -rf lib",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Workday/canvas-kit.git"
},
"keywords": [
"actions",
"node",
"canvas kit"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/openapi-types": "^14.0.0",
"@types/common-tags": "^1.8.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/parser": "^4.31.1",
"@vercel/ncc": "^0.29.0",
"common-tags": "^1.8.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.3.0",
"eslint-plugin-jest": "^24.4.0",
"graphql": "^15.3.0",
"jest": "^27.2.0",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.1",
"prettier": "^2.4.0",
"ts-graphql-plugin": "^2.1.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"resolutions": {
"puppeteer-core": "^13.7.0"
}
}