-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
77 lines (77 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
77
{
"name": "ngx-perfect-scrollbar",
"description": "Angular wrapper library for Perfect Scrollbar",
"bugs": "https://github.com/zefoy/ngx-perfect-scrollbar/issues",
"version": "10.1.1",
"license": "MIT",
"private": true,
"scripts": {
"ng": "ng",
"lint": "ng lint",
"start": "ng serve app",
"build": "ng build lib",
"deploy": "deploy-to-git",
"prepare": "ng build lib --prod",
"publish": "npm 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/zefoy/ngx-perfect-scrollbar.git"
},
"config": {
"deployToGit": {
"repository": "[email protected]:zefoy/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": "ZEF Devel",
"email": "[email protected]"
}
}
},
"dependencies": {
"@angular/cdk": "^10.0.0",
"@angular/common": "^10.0.0",
"@angular/compiler": "^10.0.0",
"@angular/core": "^10.0.0",
"@angular/flex-layout": "10.0.0-beta.32",
"@angular/platform-browser": "^10.0.0",
"@angular/platform-browser-dynamic": "^10.0.0",
"perfect-scrollbar": "^1.5.0",
"resize-observer-polyfill": "^1.5.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1000.0",
"@angular-devkit/build-ng-packagr": "^0.1000.0",
"@angular/cli": "^10.0.0",
"@angular/compiler-cli": "^10.0.0",
"@types/node": "^12.12.0",
"codelyzer": "^6.0.0",
"core-js": "^3.6.0",
"cpx": "^1.5.0",
"deploy-to-git": "^0.1.0",
"mkdirp": "^1.0.0",
"ng-packagr": "^10.0.0",
"rimraf": "^3.0.0",
"rxjs": "^6.6.0",
"stylelint": "^13.6.0",
"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": "~3.9.0",
"watch": "^1.0.0",
"zone.js": "^0.10.0"
}
}