-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "github-user-finder",
"version": "1.0.0",
"description": "GitHub User Finder is a Vanilla JS (ES6 & ES7) based web application to find GitHub users, their latest 5 repos and other details about them as you press one key at a time from your keyboard",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --output-public-path=/build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaumya/github-user-finder.git"
},
"keywords": [
"github",
"user",
"finder",
"search",
"web-app",
"javascript"
],
"author": "Saumya Majumder",
"license": "ISC",
"bugs": {
"url": "https://github.com/isaumya/github-user-finder/issues"
},
"homepage": "https://github.com/isaumya/github-user-finder#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}