-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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
{
"name": "@trustify/tipbot.ts",
"version": "0.0.1",
"description": "Javascript Library for IOTA Tipbots. Written in Typescript.",
"main": "lib/index.js",
"private": false,
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trusty-code/tipbot.ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/trusty-code/tipbot.ts/issues"
},
"homepage": "https://github.com/trusty-code/tipbot.ts#readme",
"devDependencies": {
"@types/jest": "^26.0.3",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5"
},
"dependencies": {
"@iota/checksum": "^1.0.0-beta.30",
"@keyv/postgres": "^1.0.16",
"@types/bluebird": "^3.5.32",
"keyv": "^4.0.1",
"keyv-file": "^0.2.0"
}
}