Bug fix for dygraph point selection touch event.
[dygraphs.git] / package.json
CommitLineData
4c3816a5
DV
1{
2 "name": "dygraphs",
8dc4700a 3 "version": "2.1.0",
4c3816a5 4 "description": "dygraphs is a fast, flexible open source JavaScript charting library.",
fd6b8dad
DV
5 "main": "index.es5",
6 "module": "index",
7 "jsnext:main": "index",
8 "files": [
9 "index.js",
10 "index.es5.js",
11 "docs",
12 "dist",
13 "src",
14 "src-es5"
15 ],
4c3816a5
DV
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/danvk/dygraphs.git"
19 },
20 "keywords": [
21 "dygraphs",
22 "javascript",
23 "visualization",
24 "canvas",
25 "chart",
26 "timeseries"
27 ],
28 "author": "Dan Vanderkam (danvdk@gmail.com)",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/danvk/dygraphs/issues"
32 },
33 "homepage": "https://github.com/danvk/dygraphs",
34 "devDependencies": {
ff876d52 35 "babel": "^5.8.23",
2a1f00d8 36 "babel-core": "^5.8.25",
6ecc0739
DV
37 "babelify": "^6.3.0",
38 "browserify": "^11.2.0",
514a10f3 39 "browserify-header": "^0.9.2",
e8c70e4e 40 "chai": "^3.3.0",
fd6b8dad
DV
41 "clean-css": "^3.4.23",
42 "core-js": "^2.4.1",
49cb8afc 43 "coveralls": "^2.11.2",
7fea22be
DV
44 "envify": "^3.4.0",
45 "exorcist": "^0.4.0",
2a1f00d8 46 "http-server": "^0.8.5",
ff876d52 47 "istanbul": "^0.4.0",
46fd9089 48 "jshint": "^2.5.10",
ab847f37 49 "lcov-parse": "0.0.9",
8db6393e 50 "mocha": "^2.1.0",
ff876d52
DV
51 "mocha-phantomjs": "3.5.3",
52 "mocha-phantomjs-istanbul": "0.0.2",
ab847f37 53 "parse-data-uri": "^0.2.0",
46fd9089 54 "phantomjs": "^1.9.7-8",
1f98bcec 55 "pre-commit": "^1.0.6",
ab847f37 56 "source-map": "^0.4.2",
7fea22be 57 "uglify-js": "^2.5.0",
6ecc0739 58 "watchify": "^3.4.0"
4c3816a5
DV
59 },
60 "scripts": {
514a10f3 61 "build": "./scripts/build.sh",
ff876d52 62 "coverage": "./scripts/generate-coverage.sh",
514a10f3
DV
63 "watch": "./scripts/watch.sh",
64 "build-tests": "./scripts/build-tests.sh",
65 "test": "./scripts/run-tests.sh",
1f98bcec
DV
66 "tests-ok": "./scripts/check-no-only.sh"
67 },
68 "pre-commit": [
69 "tests-ok"
fd6b8dad 70 ]
4c3816a5 71}