-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 KB
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
{
"name": "plywood-druid-requester",
"version": "3.0.2",
"description": "Druid requester for Plywood (within node)",
"keywords": [
"druid",
"requester"
],
"author": {
"name": "Vadim Ogievetsky",
"url": "http://vadim.ogievetsky.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/implydata/plywood-druid-requester.git"
},
"main": "build/druidRequester.js",
"typings": "build/druidRequester.d.ts",
"files": [
"build/"
],
"prettier": "@awesome-code-style/prettier-config",
"volta": {
"node": "16.20.2"
},
"scripts": {
"compile": "tsc",
"eslint": "eslint --max-warnings 0 'src/*.ts' 'test/*.js'",
"prepublishOnly": "npm run compile",
"prettify": "prettier --write 'src/*.ts' 'test/*.js'",
"prettify-check": "prettier --check 'src/*.ts' 'test/*.js'",
"watch": "tsc --watch",
"pretest": "tsc",
"test": "mocha"
},
"dependencies": {
"@implydata/request": "^2.88.4",
"@implydata/request-promise-native": "^1.0.10",
"concat-stream": "~1.6.2",
"has-own-prop": "~1.0.1",
"plywood-base-api": "~0.2.9",
"readable-stream": "~3.0.3",
"socks5-http-client": "~1.0.4",
"socks5-https-client": "~1.2.1",
"stream-json": "~0.6.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@awesome-code-style/eslint-config": "^5.0.0",
"@awesome-code-style/prettier-config": "^5.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^16.0.0",
"axios": "^1.6.2",
"chai": "4.1.2",
"lodash.clonedeepwith": "4.5.0",
"mocha": "^10.2.0",
"nock": "10.0.0",
"prettier": "^3.0.3",
"stream-to-array": "2.3.0",
"typescript": "^5.2.2"
}
}