-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "chartjs-chart-financial",
"description": "Chart.js module for charting financial securities",
"main": "dist/chartjs-chart-financial.min.js",
"version": "0.2.1",
"type": "module",
"module": "dist/chartjs-chart-financial.esm.js",
"types": "types/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chartjs/chartjs-chart-financial.git"
},
"files": [
"dist/*.js",
"types/*.d.ts"
],
"scripts": {
"build": "rollup -c",
"package": "npm run build && node scripts/create-packages.js",
"lint": "eslint \"docs/**/*.html\" \"src/**/*.js\" \"test/**/*.js\"",
"lint-types": "eslint \"types/**/*.ts\" && tsc -p types/tests/",
"test": "npm run test-types && npm run test-unit",
"test-unit": "karma start ./karma.conf.cjs --single-run --coverage --grep",
"test-unit:dev": "karma start ./karma.conf.cjs --auto-watch --grep",
"test-types": "tsc -p types/tests/"
},
"peerDependencies": {
"chart.js": "^4.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@rollup/plugin-terser": "^0.4.4",
"archiver": "^7.0.1",
"chart.js": "^4.4.1",
"chartjs-adapter-luxon": "^1.3.1",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es-x": "^8.1.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-markdown": "^5.1.0",
"globals": "^15.12.0",
"jasmine": "^5.1.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-rollup-preprocessor": "^7.0.7",
"luxon": "^3.4.4",
"rollup": "^4.13.0",
"rollup-plugin-istanbul": "^5.0.0",
"typescript": "^5.4.3",
"typescript-eslint": "^8.14.0",
"yargs": "^17.7.2"
}
}