forked from implydata/plywood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.53 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
{
"name": "plywood",
"version": "0.35.4",
"description": "A query planner and executor",
"keywords": [
"split",
"apply",
"combine",
"druid",
"query planner"
],
"author": {
"name": "Vadim Ogievetsky",
"url": "http://vadim.ogievetsky.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/implydata/plywood.git"
},
"main": "build/plywood.js",
"typings": "build/index.d.ts",
"files": [
"build/",
"package/",
"typings/"
],
"prettier": "@awesome-code-style/prettier-config",
"scripts": {
"prepare": "tdi -q",
"compile": "./compile",
"pretest": "./compile",
"test": "./travis-test",
"full-test": "./run-tests",
"eslint": "eslint 'src/**/*.ts?(x)'",
"eslint-fix": "npm run eslint -- --fix --report-unused-disable-directives",
"eslint-changed-only": "git diff --diff-filter=ACMR --cached --name-only | grep -E \\.tsx\\?$ | xargs ./node_modules/.bin/eslint",
"eslint-fix-changed-only": "npm run eslint-changed-only -- --fix",
"prettify": "prettier --write '{src,test}/**/*.{ts,js}'",
"prettify-check": "prettier --check '{src,test}/**/*.{ts,js}'"
},
"tonicExampleFilename": "docs/examples/tonic.js",
"volta": {
"node": "14.16.1",
"npm": "6.14.12"
},
"dependencies": {
"@druid-toolkit/query": "^0.19.1",
"chronoshift": "^0.10.0",
"druid.d.ts": "^0.12.1",
"has-own-prop": "^1.0.1",
"immutable-class": "^0.11.1",
"moment-timezone": "^0.5.26",
"plywood-base-api": "^0.2.8",
"readable-stream": "^3.0.3",
"stream-to-array": "^2.3.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@awesome-code-style/eslint-config": "^4.0.0",
"@awesome-code-style/prettier-config": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"axios": "0.18.0",
"chai": "4.2.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^40.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"f-tool": "0.1.3",
"immutable-class-tester": "0.7.2",
"imonit": "0.2.0",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"pegjs": "0.10.0",
"plywood-druid-requester": "2.6.5",
"plywood-mysql-requester": "2.3.0",
"plywood-postgres-requester": "1.4.0",
"prettier": "^2.5.1",
"stylelint": "^14.3.0",
"tdi": "0.6.5",
"typescript": "^4.5.5"
}
}