forked from chartjs/chartjs-adapter-date-fns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "chartjs-adapter-date-std",
"homepage": "https://github.com/gcollin/chartjs-adapter-date-std/blob/master/README.md",
"description": "Chart.js adapter using browser standard Intl API for time functionalities",
"version": "0.1.8",
"license": "MIT",
"main": "dist/chartjs-adapter-date-std.js",
"module": "dist/chartjs-adapter-date-std.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gcollin/chartjs-adapter-date-std.git"
},
"files": [
"dist/*.js",
"dist/*.ts"
],
"scripts": {
"build": "tsc -d --declarationDir dist --declarationMap src/index.ts && rollup -c",
"dev": "karma start --auto-watch --no-single-run --browsers chrome",
"lint": "eslint test/**/*.js",
"test": "cross-env NODE_ENV=test concurrently \"npm:test-*\"",
"test-lint": "npm run lint",
"test-karma": "karma start --auto-watch --single-run"
},
"keywords": [
"chart.js",
"date",
"time"
],
"files": [
"dist/*.js",
"dist/*.ts"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/jasmine": "^4.3.0",
"@types/karma": "^6.3.3",
"chart.js": "^3.9.1",
"chartjs-test-utils": "^0.4.0",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es": "^4.1.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-typescript": "^5.5.3",
"rollup": "^2.40.0",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.2"
},
"peerDependencies": {
"chart.js": ">=2.8.0"
}
}