-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "bovespa",
"version": "0.2.5",
"description": "Bovespa data extractor, server, and command line interface",
"main": "./lib/index.js",
"bin": {
"bovespa": "./bin/cli.js"
},
"scripts": {
"serve": "fastify start bin/server.js -p 7000 -a 0.0.0.0 -l debug -w",
"serve-production": "NODE_ENV=production fastify start bin/server.js -p 7000 -a 0.0.0.0 -l debug",
"build": "node --max-old-space-size=8192 ./bin/build.js",
"realtime-reset": "node --max-old-space-size=8192 ./bin/realtime-reset.js",
"realtime-sync": "node --max-old-space-size=8192 ./bin/realtime-sync.js",
"update": "node --max-old-space-size=8192 ./bin/build.js --update",
"lint": "eslint bin/* lib/ --fix",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/nihey/node-bovespa.git"
},
"keywords": [
"bovespa",
"stocks",
"bolsa",
"valores",
"ações"
],
"author": "Nihey Takizawa <[email protected]>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/nihey/node-bovespa.git"
},
"homepage": "https://github.com/nihey/node-bovespa.git",
"dependencies": {
"adm-zip": "^0.4.13",
"axios": "^0.18.1",
"chalk": "^2.4.2",
"config": "^3.0.1",
"fastify": "^2.1.0",
"fastify-cli": "^1.0.0",
"fastify-cors": "^3.0.1",
"meow": "^5.0.0",
"mkdirp": "^0.5.1",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.18.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"moment": "^2.24.0"
}
}