-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "databench",
"version": "0.7.0",
"description": "Real-time data analysis tool.",
"readme": "./js/docs/index.md",
"main": "./js/build/commonjs/databench.js",
"types": "./js/build/commonjs/index.d.ts",
"directories": {
"doc": "docs/jsdoc",
"test": "js/tests"
},
"dependencies": {
"@types/request": "^2.47.0",
"@types/websocket": "0.0.36",
"request": "^2.86.0",
"websocket": "^1.0.26"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^2.2.48",
"awesome-typescript-loader": "^3.5.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"json-loader": "^0.5.7",
"mocha": "^5.2.0",
"source-map-loader": "^0.2.3",
"tslint": "^5.10.0",
"typedoc": "^0.9.0",
"typescript": "^2.8.3",
"webpack": "^3.12.0"
},
"eslintConfig": {
"parser": "babel-eslint"
},
"scripts": {
"build": "webpack",
"test": "tsc && mocha -t 5000 js/build/commonjs/test.js",
"lint": "tslint -c tslint.json js/src/*.ts && eslint databench/analyses_packaged/**/*.js",
"typedoc": "typedoc --out docs/typedoc/ --excludePrivate --excludeNotExported --excludeExternals --mode file --readme js/docs/index.md js/src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svenkreiss/databench.git"
},
"author": "@svenkreiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/svenkreiss/databench/issues"
},
"homepage": "http://databench.trivial.io"
}