-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.52 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
{
"name": "canvas-circular-countdown",
"version": "1.8.0",
"description": "Draw a configurable circular canvas countdown timer",
"main": "dist/CanvasCircularCountdown.umd.min.js",
"module": "dist/CanvasCircularCountdown.esm.min.js",
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c -w",
"lint": "eslint . --ext .js --max-warnings 0",
"clean": "rimraf dist",
"prepare": "npm-run-all clean lint build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georapbox/canvas-circular-countdown.git"
},
"keywords": [
"html5-canvas",
"progress-bar",
"countdown-timer",
"circularprogressbar"
],
"author": "George Raptis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/georapbox/canvas-circular-countdown/issues"
},
"homepage": "https://github.com/georapbox/canvas-circular-countdown#readme",
"devDependencies": {
"@babel/core": "~7.18.10",
"@babel/plugin-proposal-object-rest-spread": "~7.18.9",
"@babel/preset-env": "~7.18.10",
"@babel/register": "~7.18.9",
"coveralls": "~3.1.1",
"cross-env": "~7.0.3",
"eslint": "~8.22.0",
"npm-run-all": "~4.1.5",
"rimraf": "~3.0.2",
"rollup": "~2.78.1",
"rollup-plugin-babel": "~4.4.0",
"rollup-plugin-commonjs": "~10.1.0",
"rollup-plugin-node-resolve": "~5.2.0",
"rollup-plugin-terser": "~7.0.2"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead"
}