-
Notifications
You must be signed in to change notification settings - Fork 399
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "peity",
"version": "3.3.0",
"description": "Peity (sounds like deity) is a jQuery plugin that converts an element's content into a mini `svg` pie, line or bar chart.",
"main": "jquery.peity.js",
"files": [
"CHANGELOG.md",
"LICENCE",
"README.md",
"jquery.peity.js",
"jquery.peity.min.js"
],
"devDependencies": {
"ejs": "^2.5.5",
"express": "^4.14.1",
"jest": "^29.7.0",
"jest-puppeteer": "^10.0.1",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"uglify-js": "^3.3.7"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/benpickles/peity.git"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery",
"chart",
"graph",
"sparkline",
"svg"
],
"author": "Ben Pickles",
"license": "MIT",
"bugs": {
"url": "https://github.com/benpickles/peity/issues"
},
"homepage": "https://github.com/benpickles/peity",
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}