-
Notifications
You must be signed in to change notification settings - Fork 462
/
package.json
86 lines (86 loc) · 2.2 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
{
"name": "justgage",
"version": "1.7.0",
"description": "JustGage is a handy JavaScript plugin for generating and animating nice & clean gauges. It is based on Raphaël library for vector drawing, so it’s completely resolution independent and self-adjusting.",
"main": "index.js",
"scripts": {
"build": "grunt build && cp justgage.js docs/ && cp raphael.min.js docs/ && git add dist/* docs/*",
"changelog": "auto-changelog -p && git add CHANGELOG.md",
"lint": "eslint --ext .js .",
"lint-fix": "eslint --fix --ext .js .",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/toorshia/justgage.git"
},
"auto-changelog": {
"commitLimit": false
},
"release-it": {
"github": {
"release": true,
"assets": [
"dist/*"
]
},
"git": {
"tagName": "v${version}"
},
"hooks": {
"before:init": [
"npm run lint"
],
"after:bump": [
"npm run build",
"npm run changelog"
]
},
"npm": {
"publish": true
}
},
"keywords": [
"gauge",
"meter",
"clean",
"simple",
"minimal",
"svg",
"vector",
"performance",
"indicator",
"measure",
"dashboard",
"javascript",
"plugin"
],
"author": "Bojan Djuricic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/toorshia/justgage/issues"
},
"dependencies": {
"raphael": "^2.3.0"
},
"homepage": "https://github.com/toorshia/justgage",
"devDependencies": {
"auto-changelog": "^2.4.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"grunt": "^1.5.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"matchdep": "^2.0.0",
"prettier": "^2.8.0",
"release-it": "^15.5.0"
}
}