-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 931 Bytes
/
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
{
"name": "wikipedia-viewer",
"version": "0.0.1",
"description": "FreeCodeCamp's Challenge - Wikipedia Viewer",
"main": "app.js",
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"webpack": "webpack",
"watch": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lebilly/wikipedia-viewer.git"
},
"keywords": [
"wikipedia",
"viewer",
"wikipedia-viewer"
],
"author": "Billy Le",
"license": "ISC",
"bugs": {
"url": "https://github.com/lebilly/wikipedia-viewer/issues"
},
"homepage": "https://github.com/lebilly/wikipedia-viewer#readme",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"css-loader": "^0.25.0",
"node-sass": "^3.10.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
},
"dependencies": {}
}