-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.84 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
{
"name": "chartjs-plugin-responsive-downsample",
"version": "1.1.3",
"description": "A chart.js plugin to dynamically downsample line chart data depending on the chart resolution.",
"files": [
"dist"
],
"browser": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build && npm run build-browser && npm run build-browser-min",
"build": "tsc",
"build-browser": "browserify src/index.ts -o dist/chartjs-plugin-responsive-downsample.bundle.js -p [ tsify ] --ignore chart.js --ignore moment",
"build-browser-min": "browserify src/index.ts -o dist/chartjs-plugin-responsive-downsample.bundle.min.js -p [ tsify ] -t [ uglifyify -x .js -x .ts ] --ignore chart.js --ignore moment",
"test": "nyc mocha test/unit/**.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3dcl/chartjs-plugin-responsive-downsample.git"
},
"author": "Marcel Pursche",
"license": "MIT",
"bugs": {
"url": "https://github.com/3dcl/chartjs-plugin-responsive-downsample/issues"
},
"homepage": "https://github.com/3dcl/chartjs-plugin-responsive-downsample#readme",
"dependencies": {
"@types/chart.js": "^2.7.42",
"chart.js": "^2.7.3",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-datetime": "0.0.31",
"@types/mocha": "^5.2.5",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^5.0.1",
"tsify": "^3.0.4",
"uglifyify": "^5.0.2"
},
"nyc": {
"include": [
"src"
],
"exclude": [],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov"
],
"report-dir": "coverage",
"sourceMap": true,
"instrument": true
}
}