Bug fix for dygraph point selection touch event.
[dygraphs.git] / package.json
... / ...
CommitLineData
1{
2 "name": "dygraphs",
3 "version": "2.1.0",
4 "description": "dygraphs is a fast, flexible open source JavaScript charting library.",
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 ],
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": {
35 "babel": "^5.8.23",
36 "babel-core": "^5.8.25",
37 "babelify": "^6.3.0",
38 "browserify": "^11.2.0",
39 "browserify-header": "^0.9.2",
40 "chai": "^3.3.0",
41 "clean-css": "^3.4.23",
42 "core-js": "^2.4.1",
43 "coveralls": "^2.11.2",
44 "envify": "^3.4.0",
45 "exorcist": "^0.4.0",
46 "http-server": "^0.8.5",
47 "istanbul": "^0.4.0",
48 "jshint": "^2.5.10",
49 "lcov-parse": "0.0.9",
50 "mocha": "^2.1.0",
51 "mocha-phantomjs": "3.5.3",
52 "mocha-phantomjs-istanbul": "0.0.2",
53 "parse-data-uri": "^0.2.0",
54 "phantomjs": "^1.9.7-8",
55 "pre-commit": "^1.0.6",
56 "source-map": "^0.4.2",
57 "uglify-js": "^2.5.0",
58 "watchify": "^3.4.0"
59 },
60 "scripts": {
61 "build": "./scripts/build.sh",
62 "coverage": "./scripts/generate-coverage.sh",
63 "watch": "./scripts/watch.sh",
64 "build-tests": "./scripts/build-tests.sh",
65 "test": "./scripts/run-tests.sh",
66 "tests-ok": "./scripts/check-no-only.sh"
67 },
68 "pre-commit": [
69 "tests-ok"
70 ]
71}