forked from heavyai/heavyai-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@mapd/connector",
"description": "Connector to omniscidb",
"version": "5.5.2",
"license": "Apache-2.0",
"scripts": {
"build": "bash scripts/build.sh",
"clean": "rm -rf node_modules/ dist/ build/ docs/",
"clean:docs": "rm -rf docs/",
"coverage": "nyc report --reporter=text-lcov",
"docs": "npm run docs:build && open docs/index.html",
"docs:build": "./node_modules/documentation/bin/documentation.js build src/** -f html -o docs",
"format": "prettier --write '{src,test}/**/*.js'",
"format:check": "prettier --debug-check --list-different '{src,test}/**/*.js'",
"format:lint": "npm run format && npm run lint",
"lint": "eslint --fix src/",
"test": "npm run lint; nyc npm run test:unit -- && npm run test:integration",
"test:integration": "mocha test/integration.spec.js && karma start test/karma.conf.js",
"test:unit": "mocha ./test/*.unit.spec.js --require ./test/config.js --require ./test/setup.js"
},
"main": "dist/node-connector.js",
"browser": "dist/browser-connector.js",
"unpkg": "dist/browser-connector.js",
"jsdelivr": "dist/browser-connector.js",
"repository": {
"type": "git",
"url": "http://github.com/omnisci/mapd-connector"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@babel/runtime-corejs3": "^7.12.5",
"@types/thrift": "^0.10.7",
"apache-arrow": "^2.0.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"base64-arraybuffer": "^0.1.5",
"buffer": "^6.0.3",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"codecov": "^3.8.1",
"documentation": "^13.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jsdom": "^16.4.0",
"karma": "^5.2.3",
"karma-babel-preprocessor": "^8.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"puppeteer": "^5.5.0",
"request": "^2.88.2",
"url": "^0.11.0",
"util": "^0.12.3",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
},
"nyc": {
"check-coverage": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"exclude": [
"test/"
]
},
"dependencies": {
"eventemitter3": "^3.1.0",
"lodash.clonedeep": "~4.5.0",
"script-loader": "^0.7.0",
"thrift": "github:apache/thrift#v0.13.0"
},
"peerDependencies": {
"apache-arrow": "^2.0.0"
}
}