-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "@xlnt/an-old-man-at-a-cafe-in-the-50s",
"version": "0.0.1",
"description": "",
"main": "lib/index.js",
"bin": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run build-ts && npm run tslint",
"ts-start": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint --project .",
"pkg": "pkg --targets node9-linux-x64,node9-macos-x64 --out-path ./pkg .",
"build-bin": "yarn run build-ts && yarn run pkg && yarn run docker-build",
"docker-build": "docker build -t shrugs/an-old-man-at-a-cafe-in-the-50s:demo .",
"docker-push": "docker push shrugs/an-old-man-at-a-cafe-in-the-50s:demo",
"deploy": "yarn run build-bin && yarn run docker-push"
},
"files": [
"lib"
],
"repository": "https://github.com/XLNT/an-old-man-at-a-cafe-in-the-50s",
"keywords": [
"ethereum"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/XLNT/an-old-man-at-a-cafe-in-the-50s/issues"
},
"homepage": "https://github.com/XLNT/an-old-man-at-a-cafe-in-the-50s#readme",
"peerDependencies": {},
"dependencies": {
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"ws": "^5.2.0"
},
"devDependencies": {
"@types/node": "^10.1.3",
"pkg": "^4.3.1",
"ts-node": "^6.0.5",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"publishConfig": {
"access": "public"
}
}