-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "functional-programming",
"version": "1.0.0",
"description": "Functional Programming, Part of Tech-Track",
"main": "src/index.js",
"scripts": {
"build": "browserify src/index.js -t babelify -o static/bundle.js",
"watch": "watchify src/index.js -t babelify -o static/bundle.js --debug --verbose",
"dev": "budo src/index.js:static/bundle.js --live -- -t [ babelify --extensions .es6 --debug]",
"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",
"d3-collection": "^1.0.7",
"d3-composite-projections": "^1.4.0",
"topojson-client": "^3.1.0",
"topojson-simplify": "^3.0.3",
"world-atlas": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"babel-loader": "^8.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browser-sync": "^2.26.13",
"browserify": "^17.0.0",
"budo": "^11.6.4",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-connect": "^5.7.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"node-sass": "^5.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}