-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.66 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
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "@rinminase/ng-charts",
"description": "Reactive, responsive, beautiful charts for Angular based on ng2-charts",
"homepage": "https://ng-charts.netlify.app",
"version": "4.3.0",
"license": "MIT",
"author": "Rin Minase",
"main": "src/public_api.ts",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/RinMinase/ng-charts.git"
},
"keywords": [
"chart.js",
"chartjs",
"ng-charts",
"ng-chart",
"angular",
"charts",
"ng2-charts",
"ng2-chart"
],
"scripts": {
"dev:setup": "npm run dev:ng && npm run dev:prettier",
"dev:ng": "code --install-extension Angular.ng-template --force",
"dev:prettier": "code --install-extension esbenp.prettier-vscode --force ",
"demo": "cd demo && npm run start && cd ..",
"demo:build": "cd demo && npm run build && cd ..",
"build": "ng-packagr -p ng-package.json && rm -rf dist/out-tsc",
"zip": "rm -f *.zip && bestzip dist.zip dist/ && npm run zip:post",
"zip:post": "ts-node -e \"require('fs').rename('dist.zip', 'ng-charts-'+process.env.npm_package_version+'-dist.zip', ()=>{})\"",
"release": "release-it --ci --no-increment --verbose || true",
"logs": "auto-changelog && npm run logs:post",
"logs:post": "sed -i \"/auto-changelog-above/,+1 d;10i <!-- auto-changelog-above -->\\n\" CHANGELOG.md"
},
"peerDependencies": {
"@angular/common": ">=8.0.0",
"@angular/core": ">=8.0.0",
"rxjs": ">=6.4.0"
},
"dependencies": {
"@types/chart.js": "2.9.22",
"chart.js": "^2.9.3",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@angular/compiler": "^14.1.0",
"@angular/compiler-cli": "^14.1.0",
"@angular/core": "^14.1.0",
"@types/lodash-es": "^4.17.4",
"@types/node": "^18.6.3",
"auto-changelog": "^2.4.0",
"bestzip": "^2.2.0",
"ng-packagr": "^14.1.0",
"postcss": "^8.4",
"release-it": "^15.2.0",
"rxjs": "^7.5.6",
"ts-node": "^10.2.1",
"tslib": "^2.4.0",
"typescript": "~4.7.4",
"zone.js": "^0.11.7"
},
"auto-changelog": {
"template": "keepachangelog",
"package": true,
"unreleasedOnly": true,
"commitLimit": 15,
"backfillLimit": 15
},
"release-it": {
"git": {
"addUntrackedFiles": false,
"commit": false,
"tag": false,
"push": false,
"requireCleanWorkingDir": false
},
"github": {
"release": false,
"releaseName": "${version}",
"assets": "ng-charts-*-dist.zip"
},
"npm": {
"publish": true,
"publishPath": "dist/",
"publishConfig": {
"access": "public"
}
}
}
}