-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "c.js",
"version": "0.1.5",
"description": "Converts data from kdb+'s internal IPC format to/from JS objects and primitives.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "make test",
"build": "make build",
"lint": "eslint src/ test/",
"benchmark": "make benchmark",
"benchmark-deopt": "make benchmark-deopt"
},
"repository": {
"type": "git",
"url": "https://github.com/BitMEX/c.js"
},
"keywords": [
"c.js",
"kdb+",
"q"
],
"author": "Samuel Reed <samuel.trace.reed@gmail.com> (http://strml.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/BitMEX/c.js/issues"
},
"homepage": "https://github.com/BitMEX/c.js",
"dependencies": {
"through2": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-eslint": "^5.0.0-beta6",
"babel-istanbul": "^0.5.9",
"babel-loader": "^6.2.0",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.15",
"babel-plugin-transform-es2015-parameters": "^6.3.18",
"babel-plugin-transform-flow-strip-types": "^6.3.15",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"mocha": "^2.3.4",
"precommit-hook": "^3.0.0",
"semver": "^5.1.0",
"uglify-js": "^2.6.1",
"webpack": "^1.12.9"
}
}