-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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": "class-profile",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:andyzg/class-profile.git",
"author": "Andy Zhang <andzhng@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/d3": "^5.0.0",
"d3": "^5.1.0",
"d3-cloud": "^1.2.5",
"d3-interpolate": "^1.1.6",
"jquery": "^3.3.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"bulma": "^0.7.1",
"tsify": "^4.0.0",
"typescript": "^2.8.3",
"uglify-js": "^3.4.0",
"watchify": "^3.11.0"
},
"scripts": {
"dev": "watchify main.ts -p [ tsify ] -o build/bundle.js -v",
"prod": "browserify main.ts -p [ tsify ] -o build/bundle.js -v && uglifyjs --compress --mangle -o build/bundle.min.js -- build/bundle.js && jekyll build"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}