-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 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
44
45
46
47
48
49
50
{
"name": "nft-twitter-banner",
"description": "Allows you to update your twitter account banner with an NFT on a set interval :tada:",
"version": "0.0.0",
"author": "Jack Clancy @jclancy93",
"bin": {
"nft-twitter-banner": "./bin/run"
},
"bugs": "https://github.com/jclancy93/nft-twitter-banner/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"cli-ux": "^5.6.3",
"puppeteer": "^10.2.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"chai": "^4",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"mocha": "^5",
"nyc": "^14"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/jclancy93/nft-twitter-banner",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "nft-twitter-banner"
},
"repository": "jclancy93/nft-twitter-banner",
"scripts": {
"posttest": "eslint .",
"prepack": "oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}