forked from krispo/ng2-nvd3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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": "ng2-nvd3",
"version": "1.1.3",
"description": "Angular2 component for NVD3.js reusable charting library",
"keywords": [
"angular2",
"ng2",
"nvd3",
"d3",
"component",
"directive"
],
"homepage": "https://github.com/krispo/ng2-nvd3",
"license": "MIT",
"main": "build/lib/ng2-nvd3.js",
"typings": "build/lib/ng2-nvd3.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "karma start karma.conf.js",
"build": "rm -rf build && tsc",
"prepublish": "typings install && npm run build"
},
"author": "Konstantin Skipor",
"repository": {
"type": "git",
"url": "https://github.com/krispo/ng2-nvd3.git"
},
"devDependencies": {
"es6-promise": "^3.0",
"es6-shim": "^0.35",
"jasmine-core": "^2.4.1",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.7",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"ts-loader": "^0.8",
"typescript": "^1.8.10",
"typings":"^0.8.1",
"zone.js": "^0.6.12"
},
"dependencies": {
"@angular/common": "^2.0.0-rc.4",
"@angular/compiler": "^2.0.0-rc.4",
"@angular/core": "^2.0.0-rc.4",
"@angular/platform-browser": "^2.0.0-rc.4",
"@angular/platform-browser-dynamic": "^2.0.0-rc.4",
"d3": "^3.5.15",
"nvd3": "^1.8.2"
}
}