-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "@maslick/karandashee",
"version": "2.1.8",
"description": "nice-looking time series plot for categorical data",
"main": "src/karandashee.js",
"author": "Pavel Maslov",
"license": "MIT",
"dependencies": {
"d3": "^5.7.0",
"rx-lite": "^4.0.8"
},
"devDependencies": {
"jquery": "^3.5.0",
"parcel": "^1.12.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.2.1"
},
"files": [
"src/",
"dist/",
"example/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maslick/karandashee.git"
},
"keywords": [
"time-series",
"time series",
"chart",
"plot",
"realtime",
"graph",
"categorical",
"discrete",
"mqtt",
"websocket",
"Rx",
"ReactiveX",
"Streams",
"browser",
"client",
"node",
"node.js"
],
"bugs": {
"url": "https://github.com/maslick/karandashee/issues"
},
"homepage": "https://github.com/maslick/karandashee#readme",
"scripts": {
"browser": "npx webpack --config webpack.config.js",
"build-node-test": "parcel example/index.html -d test",
"build-node-prod": "parcel build example/index.html --public-url ./ --out-dir test/"
}
}