-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "chartjs-plugin-tailwindcss-colors",
"version": "0.2.4",
"author": "Danry Parens Patriae Ague <[email protected]>",
"description": "Colorize your Chart.js components using TailwindCSS!",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/plugin.umd.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "cross-env NODE_ENV=production yarn build",
"watch": "rollup -c --configPlugin rollup-plugin-ts -w",
"dev": "conc -n R,J -c red,magenta -k \"yarn watch\" \"yarn test:dev\"",
"build": "rollup -c --configPlugin rollup-plugin-ts",
"postbuild": "node scripts/postbuild.js",
"test": "jest --coverage",
"test:dev": "jest --watch",
"format:checkonly": "prettier -c --cache .",
"format": "prettier -uw --cache .",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint .",
"lint:es:fix": "yarn lint:es --fix",
"stylecheck": "conc -c auto -n pt \"yarn:format:checkonly\" \"yarn:lint:*(!fix)\"",
"stylefix": "yarn format && conc -c auto \"yarn:lint:*:fix\""
},
"homepage": "https://github.com/decanTyme/chartjs-plugin-tailwindcss-colors#readme",
"bugs": "https://github.com/decanTyme/chartjs-plugin-tailwindcss-colors/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/decanTyme/chartjs-plugin-tailwindcss-colors.git"
},
"keywords": [
"chartjs",
"chart.js",
"tailwindcss",
"colors",
"class",
"plugin",
"parser"
],
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"browser": "./dist/plugin.umd.js",
"default": "./dist/index.js"
},
"dependencies": {
"color-name": "^2.0.0",
"lodash": "^4.17.21",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@kayahr/jest-electron-runner": "^29.14.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@tsconfig/recommended": "^1.0.7",
"@types/color-name": "^1.1.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/pixelmatch": "^5.2.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chart.js": "^3.9.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-unicorn": "^50.0.1",
"jest": "^29.7.0",
"pixelmatch": "^5.3.0",
"prettier": "^2.8.8",
"rollup": "^4.20.0",
"rollup-plugin-ts": "^3.4.5",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"chart.js": "^3.0.0",
"tailwindcss": "^3.0.0"
}
}