-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 980 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 980 Bytes
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
{
"name": "x-post-action",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npx @vercel/ncc build index.js --out dist",
"test": "jest --testPathIgnorePatterns=integration",
"test:integration": "jest integration.test.js --forceExit",
"test:integration-action": "jest integration-action.test.js --forceExit",
"test:integration-all": "jest integration*.test.js --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captradeoff/x-post-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/captradeoff/x-post-action/issues"
},
"homepage": "https://github.com/captradeoff/x-post-action#readme",
"description": "",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"twitter-api-v2": "^1.21.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.4.7",
"jest": "^29.7.0"
}
}