-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 890 Bytes
/
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
{
"author": "David Walsh <5778036+rhinodavid@users.noreply.github.com>",
"dependencies": {
"asciibots": "^1.0.6"
},
"description": "Create a banner with an ascii bot",
"devDependencies": {
"@babel/types": "^7.10.1",
"@types/jest": "^25.2.3",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"files": [
"dist"
],
"keywords": [
"ascii",
"ascii-art",
"codegen",
"automation"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"name": "botbanner",
"private": false,
"repository": "https://github.com/rhinodavid/botbanner.git",
"scripts": {
"build": "tsc src/index.ts --outDir dist -d --sourceMap --module commonjs",
"postversion": "git push && git push --tags",
"prepare": "yarn build",
"prepublishOnly": "jest",
"test": "jest"
},
"version": "1.0.3"
}