-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "jmcharts",
"version": "0.9.5",
"description": "Javascript charting library. Fast, simple, memory-efficient.",
"author": "Jan Marek <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://jan-x-marek.github.io/jmcharts/",
"repository": {
"type": "git",
"url": "https://github.com/jan-x-marek/jmcharts"
},
"keywords": [
"chart",
"ohlc",
"client",
"browser",
"canvas",
"svg",
"timeseries"
],
"dependencies": {
"d3": "^4.9.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"eslint": "^4.15.0",
"eslint-loader": "^1.9.0",
"jest": "^21.2.1",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"scripts": {
"build": "rm -rf build && webpack --env dev && webpack --env build",
"watch": "webpack --watch",
"start": "webpack-dev-server --open",
"test": "jest --watch"
},
"main": "build/jmcharts"
}