-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "archillect-context",
"version": "2.0.0",
"description": "Context provider for @archillect posts",
"main": "dist/src/main.js",
"scripts": {
"start": "tsc && node dist/src/main.js",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --fix --ext .ts .",
"depgraph": "depcruise --include-only \"^src\" --output-type dot src | dot -T svg > dependencygraph.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lluiscamino/archillect-context-bot.git"
},
"keywords": [
"twitter-bot",
"archillect",
"image-recognition"
],
"author": "Lluís Camino",
"license": "MIT",
"bugs": {
"url": "https://github.com/lluiscamino/archillect-context-bot/issues"
},
"homepage": "https://github.com/lluiscamino/archillect-context-bot#readme",
"dependencies": {
"@google-cloud/vision": "^2.4.1",
"twit": "^2.2.11"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/twit": "^2.2.30",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"dependency-cruiser": "^12.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}