forked from zefoy/ngx-perfect-scrollbar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.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
{
"name": "perfect-scrollbar-angular",
"description": "Angular 13 wrapper library for Perfect Scrollbar",
"bugs": "https://github.com/gethari/ngx-perfect-scrollbar/issues",
"version": "14.0.0",
"license": "MIT",
"private": false,
"scripts": {
"ng": "ng",
"lint": "ng lint",
"start": "ng serve app",
"build": "ng build lib",
"deploy": "deploy-to-git",
"prepare": "ng build lib --configuration production",
"publish": "pnpm publish ./dist/lib",
"predeploy": "rimraf ./dist/app && mkdirp ./dist/app"
},
"tslint": {
"extends": "./tslint.json"
},
"stylelint": {
"extends": "./stylelint.json"
},
"repository": {
"type": "git",
"url": "https://github.com/gethari/ngx-perfect-scrollbar.git"
},
"config": {
"deployToGit": {
"repository": "[email protected]:gethari/ngx-perfect-scrollbar.git",
"branch": "gh-pages",
"folder": "dist/app",
"script": "ng build app --prod -- --base-href=ngx-perfect-scrollbar --delete-output-path=false",
"commit": "Publishing $npm_package_version",
"user": {
"name": "HariHaran Subramanian",
"email": "[email protected]"
}
}
},
"dependencies": {
"@angular/cdk": "^13.3.8",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/flex-layout": "13.0.0-beta.38",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"perfect-scrollbar": "^1.5.5",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.13",
"@angular/cli": "^14.2.13",
"@angular/compiler-cli": "^14.3.0",
"@types/node": "^12.12.0",
"codelyzer": "^6.0.2",
"core-js": "^3.6.0",
"cpx": "^1.5.0",
"deploy-to-git": "^0.1.11",
"mkdirp": "^1.0.0",
"ng-packagr": "^14.2.2",
"rimraf": "^3.0.0",
"rxjs": "^6.6.0",
"stylelint": "^14.8.5",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"terser": "^5.0.0",
"ts-node": "^8.10.0",
"tsickle": "^0.39.0",
"tslint": "^6.1.0",
"typescript": "~4.6.4",
"watch": "^1.0.0",
"zone.js": "^0.11.5"
}
}