forked from krispo/ng2-nvd3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "@bijujoseph/ng2-nvd3",
"version": "1.2.0",
"description": "Angular2 component for NVD3.js reusable charting library, a fork from https://github.com/jrmce/ng2-nvd3",
"keywords": [
"angular2",
"ng2",
"nvd3",
"d3",
"component",
"directive"
],
"homepage": "https://github.com/bijujoseph/ng2-nvd3",
"license": "MIT",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "karma start karma.conf.js",
"build": "rm -rf build && ngc -p ./tsconfig.publish.json",
"prepublish": "typings install && npm run build"
},
"author": "Konstantin Skipor",
"repository": {
"type": "git",
"url": "https://github.com/bijujoseph/ng2-nvd3.git"
},
"devDependencies": {
"es6-promise": "^3.0",
"es6-shim": "^0.35",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1 ",
"reflect-metadata": "0.1.9",
"rxjs": "^5.0.1",
"ts-loader": "^1.3.3",
"typescript": "~2.0.3",
"typings": "^0.8.1",
"webpack": "^1.14.0",
"zone.js": "^0.7.5"
},
"dependencies": {
"@angular/common": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/compiler-cli": "^2.4.0",
"@angular/core": "^2.4.0",
"@angular/platform-browser": "^2.4.0",
"@angular/platform-browser-dynamic": "^2.4.0",
"d3": "^3.5.15",
"nvd3": "^1.8.2"
}
}