-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 892 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 892 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
32
33
34
35
36
{
"name": "functional-programming",
"version": "1.0.0",
"description": "Functional Programming, Part of Tech-Track",
"main": "index.js",
"scripts": {
"build": "babel index.js -d dist",
"exercise": "npm run parcel exercise/index.html",
"start": "parcel -p 8080 watch src/index.html",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiovanniDw/functional-programming.git"
},
"keywords": [
"D3.js",
"javascript",
"data",
"functional",
"programming"
],
"author": "GiovanniDw",
"license": "MIT",
"bugs": {
"url": "https://github.com/GiovanniDw/functional-programming/issues"
},
"homepage": "https://github.com/GiovanniDw/functional-programming#readme",
"dependencies": {
"d3": "^6.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"parcel-bundler": "^1.3.1"
}
}