-
Notifications
You must be signed in to change notification settings - Fork 604
/
package.json
81 lines (81 loc) · 2.34 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "dygraphs",
"version": "2.2.2-alpha.0",
"description": "dygraphs is a fast, flexible open source JavaScript charting library.",
"main": "index.es5",
"module": "index",
"jsnext:main": "index",
"files": [
"_site",
"dist",
"index.es5.js",
"index.js",
"src",
"src-es5"
],
"repository": {
"type": "git",
"url": "git://github.com/danvk/dygraphs.git"
},
"keywords": [
"dygraphs",
"javascript",
"visualization",
"canvas",
"chart",
"timeseries"
],
"author": "Dan Vanderkam ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/danvk/dygraphs/issues"
},
"homepage": "https://github.com/danvk/dygraphs",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2 <7.21.4",
"@babel/plugin-transform-strict-mode": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/traverse": "<7.21.4",
"babel-plugin-add-module-exports": "^1.0.4",
"browser-pack": "^6.1.0",
"browserify": "^17.0.0",
"chai": "^3.3.0",
"clean-css": "^5.3.1",
"clean-css-cli": "^5.6.1",
"core-js": "^3.25.1",
"coveralls": "^3.1.1",
"globals": "^13.17.0",
"http-server": "^13.0.2",
"istanbul": "^0.4.0",
"js-yaml": "^3.14.1",
"jshint": "^2.5.10",
"lcov-parse": "0.0.9",
"mocha": "^5.2.0",
"mocha-phantomjs": "^3.6.0",
"mocha-phantomjs-istanbul": "0.0.2",
"parse-data-uri": "^0.2.0",
"phantomjs": "1.9.7-15",
"phantomjs-function-bind-polyfill": "^1.0.0",
"pre-commit": "^1.0.6",
"source-map": "^0.6.1",
"uglify-js": "^3.17.3",
"watchify": "^4.0.0"
},
"scripts": {
"build": "./scripts/build.sh",
"build-jsonly": "./scripts/build-js.sh",
"clean": "./scripts/clean.sh",
"coverage": "./scripts/generate-coverage.sh",
"site": "./scripts/run-site.sh",
"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",
"postpack": "rm -rf _site",
"watch": "./scripts/watch.sh",
"test": "./scripts/run-tests.sh",
"test-min": "./scripts/run-tests.sh min",
"tests-ok": "./scripts/check-no-only.sh"
},
"pre-commit": [
"tests-ok"
]
}