-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
42 lines (42 loc) · 1.31 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
{
"name": "circular-progress-bar",
"version": "1.2.4",
"main": "dist/circularProgressBar.js",
"description": "A circular progress bar in svg",
"repository": "https://github.com/tomickigrzegorz/circular-progress-bar.git",
"author": "Grzegorz Tomicki",
"license": "MIT",
"scripts": {
"watch": "rollup -c -w --sourcemap --bundleConfigAsCjs",
"build": "rollup -c --environment PRODUCTION --bundleConfigAsCjs",
"prod": "yarn build && yarn lib:version",
"lib:version": "node scripts/version.js"
},
"keywords": [
"js",
"svg",
"circle",
"animation"
],
"bugs": {
"url": "https://github.com/tomickigrzegorz/circular-progress-bar/issues"
},
"homepage": "https://github.com/tomickigrzegorz/circular-progress-bar#readme",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.9",
"@rollup/plugin-babel": "^6.0.4",
"core-js": "^3.36.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"rollup": "^4.22.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-terser": "^7.0.2"
}
}