-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "chartjs-adapter-moment",
"homepage": "https://www.chartjs.org",
"description": "Chart.js adapter to use Moment.js for time functionalities",
"version": "1.1.0",
"license": "MIT",
"main": "dist/chartjs-adapter-moment.js",
"module": "dist/chartjs-adapter-moment.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/chartjs/chartjs-adapter-moment.git"
},
"keywords": [
"chart.js",
"date",
"moment",
"time"
],
"files": [
"dist/*.js"
],
"scripts": {
"build": "rollup -c",
"dev": "karma start --auto-watch --no-single-run --browsers chrome",
"lint": "eslint test/**/*.js src/**/*.js",
"test": "cross-env NODE_ENV=test concurrently \"npm:test-*\"",
"test-lint": "npm run lint",
"test-karma": "karma start --auto-watch --single-run"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.1",
"chart.js": "^4.0.0",
"chartjs-test-utils": "^0.3.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es": "^4.1.0",
"karma": "^6.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-rollup-preprocessor": "7.0.5",
"moment": "^2.10.2",
"rollup": "^2.38.4",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"yargs": "^15.0.2"
},
"peerDependencies": {
"chart.js": ">=3.0.0",
"moment": "^2.10.2"
}
}