forked from fusioncharts/angular-fusioncharts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.76 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.76 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "angular-fusioncharts",
"version": "2.0.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-prod": "ng serve --prod",
"build": "rm -rf dist/ && node_modules/.bin/ngc -p tsconfig-aot.json && rollup -c rollup.config.js && cp package-dist.json dist/package.json && cp README.md dist/ && npm run uglify",
"docs": "ng build --prod && npm run build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"transpile": "ngc -p tsconfig-aot.json",
"tsc": "tsc",
"package": "rollup -c",
"uglify": "uglifyjs dist/dist/index.js --screw-ie8 --compress --mangle --comments --output dist/dist/index.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fusioncharts/angular-fusioncharts"
},
"author": {
"name": "FusionCharts",
"email": "support@fusioncharts.com"
},
"contributors": [
{
"name": "Rohit Kumar",
"email": "rohit.kr001@gmail.com",
"url": "https://github.com/rohitkr"
},
{
"name": "Rousan Ali",
"email": "rousanali786@gmail.com",
"url": "https://github.com/ariyankhan"
},
{
"name": "Ashok Mandal",
"email": "askipop@gmail.com",
"url": "https://github.com/ashok1994"
}
],
"keywords": [
"angular"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fusioncharts/angular-fusioncharts/issues"
},
"main": "./dist/index.js",
"dependencies": {
"@angular/animations": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"angularjs2-tabs": "0.0.1-beta.1",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"prismjs": "^1.6.0",
"fusioncharts": "^3.13.1-sr.1",
"rxjs": "^5.4.1",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "1.2.4",
"@angular/compiler-cli": "^4.0.0",
"@angular/language-service": "^4.0.0",
"@types/codemirror": "0.0.58",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "~3.0.1",
"codemirror": "^5.39.2",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ng2-codemirror": "^1.1.3",
"prismjs": "^1.6.0",
"protractor": "^5.4.0",
"rollup": "^0.45.2",
"ts-node": "~3.0.4",
"tslint": "~5.3.2",
"typescript": "2.9.2"
},
"engines": {
"node": ">=4.4.1"
}
}