-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 2.12 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
{
"name": "angular2-calendar-heatmap",
"version": "0.2.4",
"description": "Angular component for d3.js calendar heatmap graph.",
"homepage": "https://github.com/g1eb/angular2-calendar-heatmap#readme",
"author": "g1eb <mail@g1eb.com> (https://g1eb.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/g1eb/angular2-calendar-heatmap.git"
},
"bugs": {
"url": "https://github.com/g1eb/angular2-calendar-heatmap/issues"
},
"scripts": {
"clean": "rm -rf dist/*",
"transpile": "ngc -p tsconfig.json",
"bundle:fesm": "rollup -f es -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.js",
"bundle:umd": "rollup -f umd -n CalendarHeatmap -e @angular/core -g @angular/core:_angular_core,moment:moment,d3/index:d3 dist/calendar-heatmap.component.js -o dist/calendar-heatmap.umd.js",
"build": "npm run clean && npm run transpile && npm run bundle:fesm && npm run bundle:umd"
},
"main": "dist/calendar-heatmap.umd.js",
"module": "dist/calendar-heatmap.js",
"jsnext:main": "dist/calendar-heatmap.js",
"typings": "dist/calendar-heatmap.d.ts",
"peerDependencies": {
"@angular/core": "^4.0.0",
"d3": "^4.11.0",
"moment": "^2.19.3",
"rxjs": "^5.1.0",
"zone.js": "^0.8.4",
"lodash": "^4.17.14"
},
"devDependencies": {
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.4.7",
"@types/d3": "^4.11.0",
"@types/node": "^6.0.60",
"concurrently": "^3.4.0",
"core-js": "^2.4.1",
"cssmin": "^0.4.3",
"minifier": "^0.8.1",
"rollup": "^0.42.0",
"systemjs": "0.19.40",
"typescript": "^2.5.3",
"zone.js": "^0.8.29"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"keywords": [
"angular",
"angular2",
"angularjs",
"component",
"calendar",
"heatmap",
"graph",
"visualization",
"chart",
"time",
"d3js",
"d3"
],
"dependencies": {
"d3": "^4.13.0",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"rxjs": "^5.5.12",
"rxjs-compat": "^6.5.2"
}
}