forked from heavyai/heavyai-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.14 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
{
"name": "@mapd/connector",
"description": "Connector to mapdql",
"version": "4.7.0",
"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": "yarn format && yarn 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",
"repository": {
"type": "git",
"url": "http://github.com/mapd/mapd-connector"
},
"devDependencies": {
"@types/thrift": "^0.10.7",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.5.0",
"base64-arraybuffer": "^0.1.5",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"documentation": "^4.0.0-rc.0",
"esdoc": "^0.4.8",
"eslint": "^3.0.1",
"eslint-config-prettier": "^2.9.0",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.3",
"mocha": "^2.5.3",
"nyc": "^10.3.0",
"prettier": "1.10.2",
"webpack": "^1.15.0"
},
"nyc": {
"check-coverage": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"exclude": [
"test/"
]
},
"dependencies": {
"codecov": "^2.2.0",
"eventemitter3": "^3.1.0",
"script-loader": "^0.7.0",
"thrift": "^0.10.0"
}
}