forked from stimulus-components/stimulus-chartjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.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
{
"name": "stimulus-chartjs",
"version": "3.0.0",
"description": "A Stimulus controller to deal with chart.js.",
"keywords": [
"stimulus",
"stimulusjs",
"stimulus controller",
"chart",
"chart.js"
],
"repository": "git@github.com:stimulus-components/stimulus-chartjs.git",
"bugs": {
"url": "https://github.com/stimulus-components/stimulus-chartjs/issues"
},
"author": "Guillaume Briday <guillaumebriday@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/stimulus-components/stimulus-chartjs",
"private": false,
"main": "dist/stimulus-chartjs.umd.js",
"module": "dist/stimulus-chartjs.es.js",
"scripts": {
"format": "prettier-standard '**/*.{ts,css,html}' --format",
"lint": "prettier-standard '**/*.{ts,css,html}' --lint",
"dev": "vite",
"prod": "vite build --config /dev/null",
"build": "tsc --noEmit && vite build",
"version": "yarn build",
"np": "np --no-2fa --no-test"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/plugin-syntax-class-properties": "7.12.13",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/chart.js": "^2.9.32",
"np": "^7.5.0",
"prettier-standard": "16.4.1",
"@hotwired/stimulus": "^3.0.1",
"typescript": "^4.2.4",
"vite": "^2.3.4"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.0.1"
},
"dependencies": {
"chart.js": "^2.9.4"
}
}