-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "mew-ens-bot",
"version": "0.0.1",
"description": "Twitter bot for registering ENSNow names",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon",
"live": "node dist/index.js",
"build": "npm run lint && tsc",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyEtherWallet/mew-ens-bot.git"
},
"keywords": [
"ENS",
"ENSNow",
"Twitter",
"bot"
],
"author": "kvhnuke",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyEtherWallet/mew-ens-bot/issues"
},
"homepage": "https://github.com/MyEtherWallet/mew-ens-bot#readme",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^12.0.0",
"@types/twit": "^2.2.21",
"nodemon": "^1.19.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/lowdb": "^1.0.8",
"dotenv": "^8.0.0",
"ethereumjs-tx": "^1.3.7",
"idna-uts46": "^1.1.0",
"lowdb": "^1.0.0",
"twit": "^2.2.11",
"web3": "^1.0.0-beta.37"
},
"engines": {
"node": "8.x"
}
}