-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "ui-avatars",
"version": "1.0.0",
"description": "Generate avatar images based on user initials",
"main": "./lib/uiavatars.js",
"types": "./lib/uiavatars.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc --reporter=cobertura mocha tests/*.test.js --reporter mocha-junit-reporter --timeout 10000 --exit",
"devtest": "nyc mocha tests/*.test.js",
"mocha": "mocha tests/*.test.js"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ClydeDz/uiavatars-npm.git"
},
"author": {
"name": "Clyde D'Souza"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ClydeDz/uiavatars-npm/issues"
},
"homepage": "https://github.com/ClydeDz/uiavatars-npm#readme",
"devDependencies": {
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.22.0",
"nyc": "^14.1.1"
},
"keywords": [
"ui-avatars",
"ui avatars",
"uiavatars",
"avatars",
"gravatars",
"generate",
"user initials",
"avataars",
"user image",
"gender neutral",
"profile picture",
"picture",
"user",
"profile",
"bio",
"img",
"image",
"javascript",
"html"
]
}