-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
{
"name": "croncat",
"version": "1.8.3",
"description": "cron.cat CLI and Agent Runner",
"main": "src/index.js",
"scripts": {
"build": "babel src -d dist",
"build:cli": "babel src -d dist/src; babel bin -d dist/bin; babel cli -d dist/cli; cp src/contract_abi.json dist/src; cp package.json dist",
"build:all": "yarn package && yarn package:cli && yarn docker:build",
"start": "npm run build && node dist",
"restart": "rimraf dist && npm run start",
"dev": "nodemon --exec npm run restart",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "rimraf dist && yarn build && pkg -t node14-alpine-x64 --output croncat-agent dist/index.js",
"package:cli": "yarn build:cli && pkg -t node14-alpine-x64 --output croncat-cli dist/bin/croncat.js",
"docker:build": "docker build -t croncat ."
},
"bin": {
"croncat": "bin/croncat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cron-Near/croncat.git"
},
"keywords": [
"Cron",
"Croncat",
"NEAR",
"Blockchain"
],
"author": "@trevorjtclarke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cron-Near/croncat/issues"
},
"homepage": "https://github.com/Cron-Near/croncat#readme",
"dependencies": {
"axios": "^0.22.0",
"big.js": "^6.0.3",
"chalk": "^4.1.0",
"core-js": "^3.10.1",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"flagged-respawn": "^1.0.1",
"is-ci": "^3.0.0",
"near-api-js": "^0.43.1",
"regenerator-runtime": "^0.13.7",
"update-notifier": "^5.1.0",
"v8flags": "^3.2.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"nodemon": "^2.0.7",
"pkg": "^5.2.1",
"rimraf": "^3.0.2"
}
}