-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.66 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
60
61
62
{
"name": "network-avatar-picker",
"version": "1.4.0",
"description": "A picker for user's networks profile image.",
"main": "lib/index.js",
"scripts": {
"prepublish": "./node_modules/.bin/babel -d lib src/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"precoveralls": "npm run coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"tests": "nyc mocha tests --recursive --timeout 15000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eldimious/network-avatar-picker.git"
},
"author": "Dimos Botsaris <botsaris.d@gmail.com>",
"keywords": [
"avatar",
"avatar-service",
"profile-picture",
"profile-image",
"social-network",
"image",
"facebook",
"instagram",
"twitter",
"tumblr",
"github",
"youtube",
"vimeo",
"gmail"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/eldimious/network-avatar-picker/issues"
},
"homepage": "https://github.com/eldimious/network-avatar-picker#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"redis": "^2.8.0",
"request": "^2.82.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"redis-mock": "^0.43.0",
"sinon": "^7.3.2",
"supertest": "^4.0.2"
}
}