-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
74
75
76
77
78
{
"name": "nvd3-chart",
"version": "0.1.4",
"description": "nvd3-chart angular2+ component",
"author": "Ścibor Rudnicki <[email protected]> (http://wwdev.io)",
"homepage": "https://github.com/wwwdevio/nvd3-chart#readme",
"main": "dist/bundle.umd.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"typings": "dist/index.d.ts",
"contributors": [
"Ścibor Rudnicki <[email protected]>"
],
"scripts": {
"clean": "rimraf ./dist",
"bundle": "rollup -c rollup.config.js",
"prebuild": "npm run clean",
"build": "./node_modules/.bin/ngc -p tsconfig.json",
"postbuild": "npm run bundle",
"prepublish": "npm run build",
"start": "npm run build",
"test": "./node_modules/karma/bin/karma start karma.conf.js"
},
"license": "MIT",
"dependencies": {
"d3": "^3.5.17",
"nvd3": "^1.8.5"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.1",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@types/jasmine": "^2.5.46",
"@types/karma": "^0.13.34",
"@types/node": "^7.0.8",
"@types/nvd3": "^1.8.36",
"awesome-typescript-loader": "^3.1.2",
"codelyzer": "^3.0.0-beta.4",
"core-js": "^2.4.1",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.3",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"rxjs": "^5.2.0",
"ts-helpers": "^1.1.2",
"tslint": "^5.1.0",
"typescript": "^2.1.0",
"webpack": "^2.4.1",
"zone.js": "^0.8.5"
},
"keywords": [
"Angular2",
"Component",
"nvd3",
"d3",
"charts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wwwdevio/nvd3-chart.git"
},
"bugs": {
"url": "https://github.com/wwwdevio/nvd3-chart/issues"
}
}