-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "circular-progress-bar",
"version": "2.1.0",
"description": "CSS circular progress bar.",
"main": "src/index.js",
"unpkg": "public/circular-progress-bar.min.js",
"jsdelivr": "public/circular-progress-bar.min.js",
"scripts": {
"test": "eslint src/**/*.js && npm run build",
"play": "webpack --mode=development --watch",
"build": "webpack --mode=production"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GMartigny/circular-progress-bar.git"
},
"keywords": [
"UI",
"gauge",
"loader",
"component"
],
"author": "GMartigny",
"license": "MIT",
"bugs": {
"url": "https://github.com/GMartigny/circular-progress-bar/issues"
},
"homepage": "https://circular-progress-bar.now.sh/",
"funding": "https://github.com/GMartigny/circular-progress-bar?sponsor=1",
"devDependencies": {
"@gmartigny/eslint-config": "^1.3.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"ola": "^1.1.1"
}
}