forked from SeanSobey/ChartjsNodeCanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.3 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
{
"name": "chartjs-node-canvas",
"version": "3.0.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",
"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",
"build-and-release": "npm run-script build && npm run-script docs && npm run-script release",
"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.6.1",
"tslib": "^1.14.1"
},
"peerDependencies": {
"chart.js": "^2.7.3"
},
"devDependencies": {
"@types/chart.js": "^2.9.30",
"@types/mocha": "^7.0.2",
"@types/node": "^12.19.15",
"c8": "^7.4.0",
"chart.js": "^2.9.4",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-crosshair": "^1.1.6",
"chartjs-plugin-datalabels": "^0.7.0",
"chartjs-plugin-piechart-outlabels": "^0.1.4",
"clean-dest": "^1.3.3",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.2.0",
"node-resemble-js": "^0.2.0",
"nodemon": "^2.0.7",
"pngjs": "^3.4.0",
"source-map-support": "^0.5.19",
"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": "^3.9.7",
"wtfnode": "^0.8.4"
}
}