UNPKG

2.3 kBJSONView Raw
1{
2 "name": "dygraphs",
3 "version": "2.2.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 "_site",
10 "dist",
11 "index.es5.js",
12 "index.js",
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/cli": "^7.19.3",
36 "@babel/core": "^7.20.2",
37 "@babel/plugin-transform-strict-mode": "^7.18.6",
38 "@babel/preset-env": "^7.20.2",
39 "babel-plugin-add-module-exports": "^1.0.4",
40 "browser-pack": "^6.1.0",
41 "browserify": "^17.0.0",
42 "chai": "^3.3.0",
43 "clean-css": "^5.3.1",
44 "clean-css-cli": "^5.6.1",
45 "core-js": "^3.25.1",
46 "coveralls": "^3.1.1",
47 "globals": "^13.17.0",
48 "http-server": "^13.0.2",
49 "istanbul": "^0.4.0",
50 "js-yaml": "^3.14.1",
51 "jshint": "^2.5.10",
52 "lcov-parse": "0.0.9",
53 "mocha": "^5.2.0",
54 "mocha-phantomjs": "^3.6.0",
55 "mocha-phantomjs-istanbul": "0.0.2",
56 "parse-data-uri": "^0.2.0",
57 "phantomjs": "1.9.7-15",
58 "phantomjs-function-bind-polyfill": "^1.0.0",
59 "pre-commit": "^1.0.6",
60 "source-map": "^0.6.1",
61 "uglify-js": "^3.17.3",
62 "watchify": "^4.0.0"
63 },
64 "scripts": {
65 "build": "./scripts/build.sh",
66 "build-jsonly": "./scripts/build-js.sh",
67 "clean": "./scripts/clean.sh",
68 "coverage": "./scripts/generate-coverage.sh",
69 "site": "./scripts/run-site.sh",
70 "prepack": "rm -rf _site && cp -Lr site _site && pax -rw -l LICENSE.txt README.md _site/ && jdupes -rL dist _site src src-es5 && cd _site && mksh ../scripts/mkdiridx.sh --ah '<a href=\"https://www.npmjs.com/package/dygraphs\">dygraphs</a> manual integration tests' ./tests",
71 "postpack": "rm -rf _site",
72 "watch": "./scripts/watch.sh",
73 "test": "./scripts/run-tests.sh",
74 "tests-ok": "./scripts/check-no-only.sh"
75 },
76 "pre-commit": [
77 "tests-ok"
78 ]
79}