forked from lukbukkit/chartist-plugin-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.86 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
93
94
95
96
97
98
99
{
"name": "@stklcode/chartist-plugin-tooltips",
"type": "module",
"version": "1.0.0",
"description": "Point Labels Plugin for Chartist.js",
"author": "Stefan Kalscheuer & LukBukkit & Markus Padourek",
"homepage": "https://github.com/stklcode/chartist-plugin-tooltip",
"repository": {
"type": "git",
"url": "git+https://github.com/stklcode/chartist-plugin-tooltip.git"
},
"bugs": {
"url": "https://github.com/stklcode/chartist-plugin-tooltip/issues"
},
"keywords": [
"chartist",
"plugin",
"tooltip"
],
"engines": {
"node": ">=14"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"main": "./src/scripts/chartist-plugin-tooltip.ts",
"types": "./dist/chartist-plugin-tooltip.d.ts",
"style": "./dist/chartist-plugin-tooltip.css",
"browser": "./dist/chartist-plugin-tooltip.js",
"unpkg": "./dist/chartist-plugin-tooltip.umd.js",
"publishConfig": {
"main": "./dist/chartist-plugin-tooltip.cjs",
"module": "./dist/chartist-plugin-tooltip.js",
"exports": {
".": {
"require": "./dist/chartist-plugin-tooltip.cjs",
"import": "./dist/chartist-plugin-tooltip.js"
},
"./dist/*": "./dist/*"
},
"directory": "package"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/stklcode/chartist-plugin-tooltip/blob/main/LICENSE"
}
],
"dependencies": {
"chartist": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.1",
"@rollup/plugin-terser": "0.1.0",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"copyfiles": "^2.4.1",
"del": "^7.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"minify": "^9.1.0",
"prettier": "^2.8.1",
"rollup": "^3.7.5",
"sass": "^1.56.2",
"stylelint": "^14.16.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-scss": "^4.3.0",
"terser": "^5.16.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "del ./dist ./.tmp",
"build": "yarn clean && yarn build:styles && yarn build:scripts",
"build:scripts": "rollup -c",
"build:styles": "sass --style compressed src/styles:dist",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "yarn lint:scripts && yarn lint:styles",
"lint:scripts": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:styles": "stylelint 'src/styles/**/*.scss'",
"prepublishOnly": "yarn test && yarn build",
"test": "jest -c jest.config.json"
},
"directories": {
"test": "test"
},
"license": "MIT"
}