-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 820 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 820 Bytes
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
{
"name": "my-js-projects",
"version": "1.0.0",
"description": "5 projects completed for the freeCodeCamp JavaScript certificate. Uses Babel for transpiling ES6.",
"main": "index.html",
"scripts": {
"build": "babel src --out-dir public",
"watch": "babel src --watch --out-dir public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdevilbiss/fcc-projects.git"
},
"keywords": [
"freeCodeCamp",
"JavaScript",
"ES6",
"Babel"
],
"author": "Hannah DeVilbiss",
"license": "MIT",
"bugs": {
"url": "https://github.com/hdevilbiss/fcc-projects/issues"
},
"homepage": "https://github.com/hdevilbiss/fcc-projects#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11"
}
}