forked from valor-software/ng2-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.25 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
{
"name": "ng2-charts-demo",
"version": "1.0.0",
"scripts": {
"demo.deploy-gh-pages": "gh-pages -d dist/ng2-charts-demo",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --prod --deploy-url /ng2-charts/ --base-href /ng2-charts",
"build:lib": "ng build ng2-charts",
"build:schem": "cd ng2-charts-schematics && npm run build && cd ..",
"build:changelog": "github_changelog_generator -u valor-software -p ng2-charts",
"install:financial": "git submodule update --init chartjs-chart-financial && cd chartjs-chart-financial && npm i && cd ..",
"build:financial": "cd chartjs-chart-financial && gulp build && cp -r dist ../dist/chartjs-chart-financial/ && cd ..",
"publish:lib": "cd dist\\ng2-charts && npm publish && cd ..\\..",
"publish:schem": "cd ng2-charts-schematics && npm publish && cd ..",
"test": "ng test",
"test:headless": "ng test --watch=false --no-progress --browsers=ChromeHeadless",
"test:main": "APPLITOOLS_API_KEY=Nls100t102uNgLhLpblVUdA3tP104MQQS9VUYgHQ5tYOUuIxU110 APPLITOOLS_CONCURRENCY=100 cypress run --spec \"cypress/integration/main-test.js\"",
"test:canvas": "APPLITOOLS_API_KEY=Nls100t102uNgLhLpblVUdA3tP104MQQS9VUYgHQ5tYOUuIxU110 APPLITOOLS_CONCURRENCY=100 cypress run --spec \"cypress/integration/canvas-test.js\"",
"test:screenshot": "node cypress/integration/screenshot-test.js",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~8.0.0",
"@angular/cdk": "~8.0.0",
"@angular/common": "~8.0.0",
"@angular/compiler": "~8.0.0",
"@angular/core": "~8.0.0",
"@angular/forms": "~8.0.0",
"@angular/material": "^8.0.0",
"@angular/platform-browser": "~8.0.0",
"@angular/platform-browser-dynamic": "~8.0.0",
"@angular/router": "~8.0.0",
"chart.js": "^2.8.0",
"chartjs-adapter-luxon": "^0.2.0",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-datalabels": "^0.6.0",
"core-js": "^3.1.3",
"highlight.js": "^9.15.8",
"lodash-es": "^4.17.11",
"luxon": "^1.15.0",
"marked": "^0.6.2",
"ngx-highlightjs": "^3.0.3",
"ngx-markdown": "^7.1.5",
"prismjs": "^1.16.0",
"rxjs": "~6.5.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.800.0",
"@angular-devkit/build-ng-packagr": "~0.800.0",
"@angular/cli": "~8.0.0",
"@angular/compiler-cli": "~8.0.0",
"@angular/language-service": "~8.0.0",
"@applitools/eyes-cypress": "~3.8.10",
"@types/chart.js": "^2.7.53",
"@types/jasmine": "^3.3.13",
"@types/jasminewd2": "~2.0.3",
"@types/lodash-es": "^4.17.3",
"@types/node": "^12.0.3",
"codelyzer": "~4.5.0",
"cypress": "^3.4.1",
"eyes.images": "3.8.0",
"gh-pages": "^2.1.1",
"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.2",
"ng-packagr": "^5.2.0",
"ng2-charts-schematics": "file:ng2-charts-schematics",
"ts-node": "^8.2.0",
"tsickle": "0.35.0",
"tslib": "^1.9.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"wait-on": "2.1.0"
}
}