-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 930 Bytes
/
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
{
"name": "chaplin-bot",
"private": true,
"engines": {
"node": "14.x"
},
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx ncc build ./src/index.ts",
"tweet": "npm run build && TZ='UTC' node ./dist/index.js",
"tweet:debug": "npm run tweet -- --debug",
"test": "npx tsc && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruedap/chaplin-bot.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruedap/chaplin-bot/issues"
},
"homepage": "https://github.com/ruedap/chaplin-bot#readme",
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "14.17.34",
"jest": "26.6.3",
"ts-jest": "26.5.6",
"typescript": "4.5.5"
},
"dependencies": {
"@zeit/ncc": "0.22.3",
"proposal-temporal": "0.8.0",
"twitter-api-client": "1.3.8"
}
}