forked from hendrathings/angular2-nvd3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.07 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
{
"name": "angular2-nvd3",
"version": "1.0.8",
"description": "Angular2 module for NVD3 chart",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "npm run test:lint && karma start karma.conf.js",
"compile": "rimraf dist && ngc",
"test:lint": "tslint -c tslint.json 'src/angular2-nvd3/angular2-nvd3.*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hendrathings/angular2-nvd3.git"
},
"keywords": [
"angular2",
"ng2",
"nvd3",
"d3",
"directive",
"component",
"module",
"chart",
"graph"
],
"author": "Gung Mahendra",
"license": "MIT",
"bugs": {
"url": "https://github.com/hendrathings/angular2-nvd3/issues"
},
"homepage": "https://github.com/hendrathings/angular2-nvd3#readme",
"dependencies": {
"@types/d3": "^3.5.35",
"@types/lodash": "^4.14.62",
"@types/nvd3": "^1.8.33",
"d3": "^3.5.17",
"lodash": "^4.17.4",
"nvd3": "^1.8.5"
},
"devDependencies": {
"@angular/common": "^2.4.1",
"@angular/compiler": "^2.4.1",
"@angular/compiler-cli": "^2.4.10",
"@angular/core": "^2.4.1",
"@angular/platform-browser": "^2.4.1",
"@angular/platform-browser-dynamic": "^2.4.1",
"@types/jasmine": "^2.5.40",
"core-js": "^2.4.1",
"jasmine": "^2.5.2",
"karma": "^0.12.37",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "~1.6.0",
"phantomjs-prebuilt": "^2.1.14",
"reflect-metadata": "^0.1.9",
"rimraf": "^2.6.1",
"rxjs": "^5.0.2",
"ts-loader": "^1.3.3",
"tslint": "^4.2.0",
"typescript": "^2.1.4",
"webpack": "^1.14.0",
"zone.js": "^0.7.4"
},
"main": "dist/angular2-nvd3/angular2-nvd3.module.js",
"typings": "dist/angular2-nvd3/angular2-nvd3.module.d.ts"
}