forked from kurkle/chartjs-chart-sankey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.42 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
{
"name": "chartjs-chart-sankey",
"version": "0.12.1",
"description": "Chart.js module for creating sankey diagrams",
"main": "dist/chartjs-chart-sankey.js",
"module": "dist/chartjs-chart-sankey.esm.js",
"types": "types/index.esm.d.ts",
"exports": {
"types": "./types/index.esm.d.ts",
"require": "./dist/chartjs-chart-sankey.js",
"import": "./dist/chartjs-chart-sankey.esm.js",
"script": "./dist/chartjs-chart-sankey.min.js"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "karma start --no-single-run --auto-watch --browsers chrome",
"dev:ff": "karma start --no-single-run --auto-watch --browsers firefox",
"lint": "concurrently --group \"npm:lint-*\"",
"lint-js": "eslint \"src/**/*.js\" \"test/**/*.js\"",
"lint-md": "eslint \"**/*.md\"",
"lint-types": "eslint \"types/**/*.ts\" && tsc -p types/tests/",
"test": "cross-env NODE_ENV=test concurrently --group \"npm:test-*\"",
"test-lint": "npm run lint",
"test-karma": "karma start --no-auto-watch --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurkle/chartjs-chart-sankey.git"
},
"keywords": [
"chart.js",
"chart",
"sankey"
],
"files": [
"dist/*.js",
"types/index.esm.d.ts"
],
"author": "Jukka Kurkela",
"license": "MIT",
"bugs": {
"url": "https://github.com/kurkle/chartjs-chart-sankey/issues"
},
"homepage": "https://github.com/kurkle/chartjs-chart-sankey#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chart.js": "^4.0.1",
"chartjs-test-utils": "^0.5.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-markdown": "^3.0.0",
"jasmine-core": "^4.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.0.1",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-rollup-preprocessor": "7.0.7",
"karma-spec-reporter": "^0.0.36",
"rollup": "^3.3.0",
"rollup-plugin-istanbul": "^4.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"chart.js": ">=3.3.0"
}
}