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