-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "smart-avatar",
"version": "2.1.1",
"description": "Render avatars with dynamic, defined fallback",
"main": "./dist/index.js",
"directories": {
"lib": "./lib"
},
"files": [
"dist/*"
],
"scripts": {
"build": "webpack && gulp --gulpfile ./gulpfile.browser.js && terser --compress --mangle --output dist/index.browser.js -- dist/index.browser.js",
"build:browser": "gulp --gulpfile ./gulpfile.browser.js && terser --compress --mangle --output dist/index.browser.js -- dist/index.browser.js",
"build:demo": "gulp --gulpfile ./gulpfile.demo.js && terser --compress --mangle --output dist/index.browser.js -- dist/index.browser.js",
"test": "jest ./test/automated/*",
"test:manual": "gulp --gulpfile ./test/manual/gulpfile.test.js && http-server ./test/manual -p 7878"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredgorski/smart-avatar.git"
},
"keywords": [
"avatar",
"default",
"dynamic",
"fallback",
"icon",
"identicon",
"image",
"initials",
"gravatar",
"photo",
"smart",
"user"
],
"author": "Jared Gorski",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredgorski/smart-avatar/issues"
},
"homepage": "https://github.com/jaredgorski/smart-avatar#readme",
"devDependencies": {
"compression-webpack-plugin": "^3.1.0",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"gulp-concat": "^2.6.1",
"gulp-replace": "^1.0.0",
"gulp-strip-comments": "^2.5.2",
"http-server": "^0.12.2",
"jest": "^25.4.0",
"terser": "^4.6.11",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"dependencies": {}
}