-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"author": {
"name": "ohager",
"email": "oliver@devbutze.com"
},
"license": "UNLICENSED",
"name": "burst-autoplotter",
"version": "0.6.0-alpha.1",
"description": "Plot automation for BURST coin",
"keywords": [
"burst",
"burstcoin",
"plotting",
"plot",
"plotter",
"automation"
],
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/ohager/burst-autoplotter.git"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^3.0.0",
"cross-env": "^5.0.1",
"jest": "^22.4.2",
"module-alias": "^2.0.6",
"semver": "^5.5.0"
},
"_moduleAliases": {
"@": "src"
},
"dependencies": {
"axios": "^0.18.0",
"blessed": "^0.1.81",
"chalk": "^2.4.1",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.4",
"date-fns": "^1.29.0",
"email-validator": "^1.1.1",
"fd-diskspace": "^1.0.0",
"fs-extra": "^6.0.1",
"inquirer": "^3.2.0",
"lodash.throttle": "^4.1.1",
"mustache": "^2.3.0",
"node-loggly-bulk": "^2.2.2",
"nodemailer": "^4.6.3",
"stappo": "^0.0.7",
"winston": "^2.4.2"
},
"bin": {
"autoplot": "./bin/index.js"
},
"engines": {
"node": ">=8.9.0"
},
"preferGlobal": true,
"scripts": {
"build": "babel src --out-dir bin --copy-files",
"test:dev": "cross-env NODE_ENV=test jest",
"test": "cross-env NODE_ENV=test jest --coverage && codecov",
"start": "cross-env NODE_ENV=development node ./src/autoplot.js",
"start:qa": "cross-env NODE_ENV=qa node ./src/autoplot.js",
"release": "npm run test:dev && npm run build && node ./tools/tag.js"
}
}