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
|
{
"name": "@0xproject/pipeline",
"version": "0.0.1",
"private": true,
"description": "Data pipeline for offline analysis",
"scripts": {
"build": "yarn tsc -b",
"test": "yarn run_mocha",
"rebuild_and_test": "run-s build test",
"test:circleci": "yarn test:coverage",
"run_mocha": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --bail --exit",
"test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
"coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
"clean": "shx rm -rf lib",
"lint": "tslint --project . --exclude **/src/generated_contract_wrappers/**/*"
},
"repository": {
"type": "git",
"url": "https://github.com/0xProject/0x.js.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/0xProject/0x.js/issues"
},
"homepage": "https://github.com/0xProject/0x.js/packages/pipeline/README.md",
"devDependencies": {
"@0xproject/tslint-config": "^1.0.7",
"@types/command-line-args": "^4.0.2",
"@types/dotenv": "^4.0.2",
"@types/glob": "^5.0.33",
"@types/lodash": "4.14.104",
"@types/node": "^8.0.53",
"@types/pg": "^7.4.1",
"@types/request": "^2.0.13",
"shx": "^0.2.2",
"tslint": "5.11.0",
"typescript": "3.0.1"
},
"dependencies": {
"0x.js": "^0.38.3",
"@0xproject/connect": "^0.6.14",
"airtable": "^0.5.2",
"command-line-args": "^4.0.7",
"dotenv": "^4.0.0",
"lodash": "^4.17.4",
"node-redshift": "^0.1.5",
"pg": "^7.4.1",
"queue": "^4.4.2",
"request": "^2.83.0",
"web3": "^0.20.0"
}
}
|