-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "@fractalsoftware/random-avatar-generator",
"version": "1.0.11",
"description": "A random avatar generator with low collision",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"main": "./dist/random-avatar-generator.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"watch": "webpack --watch",
"test": "jest --coverage --no-cache"
},
"keywords": [
"random",
"svg",
"images",
"avatar",
"low-collision",
"education",
"no-dependencies",
"lightweight",
"graphic",
"vector",
"generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fractalsoftware/random-avatar-generator.git"
},
"author": "Manuel Herrera",
"bugs": {
"url": "https://github.com/fractalsoftware/random-avatar-generator/issues"
},
"homepage": "https://github.com/fractalsoftware/random-avatar-generator#readme",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-loader": "^8.2.3",
"jest": "^27.4.5",
"source-map": "^0.7.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"directories": {
"example": "example"
},
"files": [
"/dist",
"/src/",
"/example"
]
}