forked from swimlane/ngx-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ngx-charts",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib": "ng build @swimlane/ngx-charts",
"build:lib:prod": "ng build @swimlane/ngx-charts --prod",
"build:demo": "npm run build:lib:prod && cross-env NODE_ENV=production ng build --prod --base-href=\"/ngx-charts/\"",
"copy-files": "cp README.md dist/swimlane/ngx-charts/README.md && cp LICENSE dist/swimlane/ngx-charts/LICENSE",
"ci": "run-s lint prettier:ci test:ci",
"test": "run-p lint prettier:ci test:unit",
"test:unit": "ng test @swimlane/ngx-charts --watch=false",
"test:watch": "ng test @swimlane/ngx-charts",
"test:ci": "ng test @swimlane/ngx-charts --watch=false --progress=false --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"e2e": "ng e2e",
"predeploy": "npm run build:demo",
"deploy": "angular-cli-ghpages --dir ./dist/ngx-charts --name=Swimlane --email=developer@swimlane.com",
"package": "run-s build:lib:prod copy-files",
"prepublish:lib": "npm run package",
"publish:lib": "npm publish ./dist/swimlane/ngx-charts",
"prepack": "npm run package",
"pack": "npm pack ./dist/swimlane/ngx-charts",
"prettier": "prettier --write \"{src,projects}/**/*.{js,ts,html,scss,css,md,json}\"",
"prettier:ci": "prettier --check \"{src,projects}/**/*.{js,ts,html,scss,css,md,json}\"",
"postinstall": "ngcc"
},
"dependencies": {
"@angular/animations": "~11.0.5",
"@angular/cdk": "^11.0.3",
"@angular/common": "~11.0.5",
"@angular/compiler": "~11.0.5",
"@angular/core": "~11.0.5",
"@angular/flex-layout": "11.0.0-beta.33",
"@angular/forms": "~11.0.5",
"@angular/platform-browser": "~11.0.5",
"@angular/platform-browser-dynamic": "~11.0.5",
"@angular/router": "~11.0.5",
"@swimlane/ngx-ui": "^34.0.0",
"codemirror": "^5.49.2",
"d3-array": "^2.9.1",
"d3-brush": "^2.1.0",
"d3-color": "^2.0.0",
"d3-format": "^2.0.0",
"d3-hierarchy": "^2.0.0",
"d3-interpolate": "^2.0.1",
"d3-scale": "^3.2.3",
"d3-selection": "^2.0.0",
"d3-shape": "^2.0.0",
"d3-time-format": "^3.0.0",
"d3-transition": "^2.0.0",
"emoji-flags": "^1.2.0",
"moment-timezone": "^0.5.28",
"ngx-moment": "^5.0.0",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.5",
"@angular-devkit/build-ng-packagr": "~0.1002.0",
"@angular/cli": "^11.0.5",
"@angular/compiler-cli": "~11.0.5",
"@angular/language-service": "~11.0.5",
"@swimlane/prettier-config-swimlane": "^3.0.2",
"@types/jasmine": "^3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/json-schema": "^7.0.4",
"@types/node": "^12.11.1",
"angular-cli-ghpages": "^0.6.2",
"codelyzer": "^6.0.0",
"cross-env": "^7.0.2",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"ts-node": "^8.8.2",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-security": "^1.16.0",
"tslint-config-swimlane": "^5.0.0",
"typescript": "~4.0.2"
}
}