forked from SeanSobey/ChartjsNodeCanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.25 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
{
"name": "chartjs-node-canvas",
"version": "4.1.6",
"description": "A node renderer for Chart.js using canvas.",
"main": "./dist/index",
"types": "./dist/index.d.ts",
"scripts": {
"nvm": "cat .nvmrc | nvm use",
"build": "tsc",
"clean": "clean-dest -s ./src -d ./dist --file-map ./scripts/clean-dest --permanent --verbose && echo TODO: Delete .tsbuildinfo?",
"lint": "tslint -p ./tsconfig.json",
"test": "c8 --all mocha dist/**/*.spec.js",
"test-unit": "mocha --exclude dist/**/*.e2e.spec.js dist/**/*.spec.js",
"test-e2e": "mocha dist/**/*.e2e.spec.js",
"package-size": "node ./scripts/package-size",
"debug-test": "node --inspect-brk=33295 --nolazy node_modules/mocha/bin/_mocha dist/**/*.spec.js",
"watch-build": "tsc --watch",
"watch-clean": "nodemon --watch ./src -e ts --exec npm run-script clean",
"watch-test": "nodemon --watch ./dist -e js --exec npm run-script test",
"docs": "jsdoc2md dist/index.js > API.md"
},
"bugs": {
"url": "https://github.com/SeanSobey/ChartjsNodeCanvas/issues",
"email": "sean.m.sobey@gmail.com"
},
"author": {
"name": "Sean Sobey",
"email": "sean.m.sobey@gmail.com"
},
"homepage": "https://github.com/SeanSobey/ChartjsNodeCanvas",
"repository": {
"type": "git",
"url": "https://github.com/SeanSobey/ChartjsNodeCanvas.git"
},
"readme": "README.md",
"license": "MIT",
"dependencies": {
"canvas": "^2.8.0",
"tslib": "^2.3.1"
},
"peerDependencies": {
"chart.js": "^3.5.1"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^16.10.4",
"@types/offscreencanvas": "^2019.6.4",
"c8": "^7.10.0",
"chart.js": "^3.5.1",
"chartjs-plugin-annotation": "^1.0.2",
"chartjs-plugin-crosshair": "^1.2.0",
"chartjs-plugin-datalabels": "^2.0.0",
"chartjs-plugin-piechart-outlabels": "^0.1.4",
"clean-dest": "^1.3.3",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.2.0",
"nodemon": "^2.0.13",
"release-it": "^14.11.6",
"resemblejs": "^4.0.0",
"source-map-support": "^0.5.20",
"ts-std-lib": "^1.2.1",
"tslint": "^6.1.3",
"tslint-divid": "^1.3.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-immutable": "^6.0.1",
"typescript": "^4.4.4",
"wtfnode": "^0.9.1"
}
}