-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
45 lines (45 loc) · 924 Bytes
/
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
{
"name": "node-q",
"version": "2.7.0",
"description": "Q interfacing with Node.js",
"keywords": [
"q",
"kx",
"kdb+",
"kdb+tick",
"interfacing"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "make test",
"itest": "make itest",
"prepublish": "tsc"
},
"author": "Michael Wittig <[email protected]>",
"license": "MIT",
"dependencies": {
"buffer-indexof-polyfill": "1.0.1",
"long": "3.0.3",
"node-uuid": "1.4.7"
},
"devDependencies": {
"@types/long": "^3.0.31",
"@types/node": "^8.0.8",
"async": "1.5.2",
"istanbul": "0.4.2",
"jshint": "2.9.1",
"madge": "0.5.3",
"mocha": "2.4.5",
"moment": "2.22.2",
"npmedge": "0.2.2",
"typescript": "^2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/michaelwittig/node-q.git"
},
"engines": {
"node": ">=0.10"
}
}