-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "tweet-action",
"version": "1.0.0",
"description": "GitHub Action for Twitter",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check --loglevel warn src/**/*.ts",
"test": "jest",
"test:cov": "yarn run test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lazy-actions/tweet-action.git"
},
"keywords": [
"twitter",
"tweet",
"github",
"github actions",
"typescript"
],
"author": "lazy-actions",
"license": "MIT",
"bugs": {
"url": "https://github.com/lazy-actions/tweet-action/issues"
},
"homepage": "https://github.com/lazy-actions/tweet-action#readme",
"engines": {
"node": ">=14.16.0",
"yarn": ">=1.22.10"
},
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@types/node-fetch": "^2.5.10",
"@types/uuid": "^8.3.0",
"@vercel/ncc": "^0.28.6",
"jest": "^27.0.1",
"nock": "^13.0.11",
"prettier": "^2.3.0",
"ts-jest": "^27.0.1",
"typescript": "^4.3.2"
},
"dependencies": {
"@actions/core": "^1.3.0",
"ejs": "^3.1.6",
"node-fetch": "^2.6.1",
"uuid": "^8.3.2"
}
}