-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "@bbs/synchronet",
"version": "0.2.0",
"description": "Synchronet BBS Software - Dockerized",
"keywords": [
"bbs",
"synchronet",
"docker"
],
"author": "Michael J. Ryan <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/bbs-io/synchronet-docker-util.git"
},
"bin": {
"synchronet": "dist/cli.js"
},
"dependencies": {
"@tracker1/docker-cli": "^1.0.4",
"cheerio": "^1.0.0-rc.5",
"colorette": "^1.2.1",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.24",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.30",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"scripts": {
"build": "tsc -p src --outDir dist",
"postbuild": "node scripts/postbuild.js",
"watch": "tsc -w -p src --outDir dist",
"publish-patch": "npm version patch && git push && git push --tags",
"publish-minor": "npm version minor && git push && git push --tags",
"publish-major": "npm version major && git push && git push --tags"
}
}