forked from swimlane/ngx-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.18 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
{
"name": "ngx-charts",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build:lib && ng build --prod",
"build:lib": "ng build @swimlane/ngx-charts && npm run copy-files",
"build:demo": "npm run build:lib && cross-env NODE_ENV=production ng build --prod --base-href=\"/ngx-charts/\"",
"package": "npm run build:lib",
"copy-files": "cp README.md dist/swimlane/ngx-charts/README.md && cp LICENSE dist/swimlane/ngx-charts/LICENSE",
"ci": "npm run lint && npm run test:ci && npm run prettier:ci",
"test": "ng test @swimlane/ngx-charts",
"test:ci": "ng test @swimlane/ngx-charts --watch=false --progress=false --browsers=ChromeHeadlessCI",
"prettier:ci": "prettier --check \"{src,projects}/**/*.{js,ts,html,scss,css,md,json}\"",
"lint": "ng lint",
"e2e": "ng e2e",
"predeploy": "npm run build:demo",
"deploy": "angular-cli-ghpages --dir ./dist/ngx-charts --name=Swimlane [email protected]",
"prepublish": "npm run package",
"publish": "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}\""
},
"dependencies": {
"@angular/animations": "~9.0.0-rc.6",
"@angular/cdk": "^8.2.3",
"@angular/common": "~9.0.0-rc.6",
"@angular/compiler": "~9.0.0-rc.6",
"@angular/core": "~9.0.0-rc.6",
"@angular/forms": "~9.0.0-rc.6",
"@angular/platform-browser": "~9.0.0-rc.6",
"@angular/platform-browser-dynamic": "~9.0.0-rc.6",
"@angular/router": "~9.0.0-rc.6",
"@swimlane/ngx-ui": "^28.0.0-rc.3",
"codemirror": "^5.49.2",
"d3-array": "^2.4.0",
"d3-brush": "^1.1.5",
"d3-color": "^1.4.0",
"d3-format": "^1.4.2",
"d3-hierarchy": "^1.1.9",
"d3-interpolate": "^1.4.0",
"d3-scale": "^3.2.1",
"d3-selection": "^1.4.1",
"d3-shape": "^1.3.7",
"d3-time-format": "^2.2.2",
"d3-transition": "^1.3.2",
"emoji-flags": "^1.2.0",
"moment-timezone": "^0.5.27",
"ngx-moment": "^3.5.0",
"rxjs": "~6.5.3",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.0-rc.5",
"@angular-devkit/build-ng-packagr": "~0.900.0-rc.5",
"@angular/cli": "^9.0.0-rc.6",
"@angular/compiler-cli": "~9.0.0-rc.6",
"@angular/language-service": "~9.0.0-rc.6",
"@swimlane/prettier-config-swimlane": "^2.0.0",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"angular-cli-ghpages": "^0.6.1",
"codelyzer": "^5.1.2",
"cross-env": "^6.0.3",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^9.0.0-rc.2",
"prettier": "^1.16.4",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-security": "^1.16.0",
"tslint-config-swimlane": "^3.0.4",
"typescript": "~3.6.4"
}
}