-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "angular2-chartjs",
"version": "0.5.1",
"description": "Chart.js component for Angular2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/*;ngc",
"build:demo": "cd dev && ngc",
"prepublish": "npm run build",
"start": "webpack-dev-server --progress --profile --colors --watch --display-error-details --display-cached --content-base dev/"
},
"peerDependencies": {
"@angular/common": ">=4.0.0 || ^2.0.0",
"@angular/compiler": ">=4.0.0 || ^2.0.0",
"@angular/core": ">=4.0.0 || ^2.0.0"
},
"dependencies": {
"chart.js": "^2.3.0"
},
"author": "Chen, Yi-Cyuan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@angular/common": "2.4.10",
"@angular/compiler": "2.4.10",
"@angular/compiler-cli": "2.4.10",
"@angular/core": "2.4.10",
"@angular/platform-browser": "2.4.10",
"@angular/platform-browser-dynamic": "2.4.10",
"@types/chart.js": "^2.6.13",
"@types/core-js": "^0.9.43",
"@types/node": "^8.0.52",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.4.3",
"ts-loader": "^0.8.2",
"typescript": "^2.0.3",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"zone.js": "0.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/emn178/angular2-chartjs.git"
},
"keywords": [
"chart",
"angular2"
],
"homepage": "https://github.com/emn178/angular2-chartjs",
"bugs": {
"url": "https://github.com/emn178/angular2-chartjs/issues"
}
}