This repository has been archived by the owner on Apr 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "pictogrify",
"version": "0.0.5",
"description": "Generate unique pictograms from any text",
"main": "dist/pictogrify.js",
"browser": "dist/pictogrify.js",
"module": "src/app/pictogram.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"build:prod": "NODE_ENV=production webpack -p"
},
"pre-commit": [
"build:prod"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/luciorubeens/pictogrify.git"
},
"keywords": [
"robohash",
"identicons",
"pictogram",
"avatar",
"hash"
],
"author": "Lúcio Rubens <luciorubeens@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luciorubeens/pictogrify/issues"
},
"homepage": "https://github.com/luciorubeens/pictogrify#readme",
"dependencies": {
"lodash": "^4.17.5",
"string-hash": "^1.1.3",
"xmldoc": "^1.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"eslint": "^4.18.1",
"eslint-loader": "^2.0.0",
"imports-loader": "^0.7.1",
"pre-commit": "^1.2.2",
"string-replace-webpack-plugin": "^0.1.3",
"svg-sprite-loader": "^3.6.2",
"svgo": "^1.0.4",
"svgo-loader": "^2.1.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
}
}