-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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": "giticon",
"version": "1.0.8",
"description": "Github style identicons",
"main": "build/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --display-error-details --display-modules",
"watch": "webpack --watch",
"test": "jest --verbose=false --config ./jest.config.js",
"test:watch": "jest --watch --verbose=false --config ./jest.config.js",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buildbreakdo/giticon.git"
},
"keywords": [
"github",
"identicon",
"avatar",
"user avatar",
"user identicon"
],
"author": "Joshua Robinson",
"bugs": {
"url": "https://github.com/buildbreakdo/giticon/issues"
},
"homepage": "https://github.com/buildbreakdo/giticon#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-destructuring": "^7.4.3",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.4",
"babel-plugin-named-asset-import": "^0.2.3",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.8.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"react-lib-adler32": "^1.0.1"
}
}