This repository has been archived by the owner on May 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
97 lines (97 loc) · 2.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "enft",
"version": "1.2.1",
"description": "An ethereum NFT events monitoring sdk.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npx tsc",
"format": "prettier --write '**/*.{js,ts,yml,json}'",
"lint": "eslint '**/*.{js,ts}' --ext .ts",
"fix": "npm run format && npm run lint",
"test:unit": "npx mocha test/unit/*",
"test:integration": "npx mocha test/integration/*",
"test": "npm run lint && npm run check-types && npm run test:unit && npm run test:integration",
"update": "git pull && npm i",
"commit": "npx cz",
"semantic-release": "semantic-release",
"check-types": "tsc --noEmit --pretty"
},
"keywords": [
"ethereum",
"ENFT",
"sales",
"NFT",
"events",
"monitoring",
"sdk"
],
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/kenryu42/ethereum-nft-sales-bot/issues"
},
"homepage": "https://github.com/kenryu42/ethereum-nft-sales-bot#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/kenryu42/ethereum-nft-sales-bot.git"
},
"author": "Kenryu (@kenryu42)",
"license": "MIT",
"dependencies": {
"async-retry": "^1.3.3",
"ethers": "^6.0.4",
"gifenc": "^1.0.3",
"joi": "^17.7.1",
"sharp": "^0.32.0",
"twitter-api-v2": "^1.14.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@commitlint/cz-commitlint": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/async-retry": "^1.4.4",
"@types/chai": "^4.3.1",
"@types/mocha": "^10.0.0",
"@types/node": "^18.6.1",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"chai": "^4.3.6",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"inquirer": "^8.2.5",
"lint-staged": "^13.1.2",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"rimraf": "^5.0.0",
"semantic-release": "^21.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.0",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}