-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
127 lines (127 loc) · 4.43 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "ngx-scrolltop",
"version": "18.0.1",
"description": "Lightweight, Material Design inspired button for scroll-to-top of the page. No dependencies. Pure Angular!",
"author": "Lukas Bartak <[email protected]> (https://github.com/bartholomej)",
"scripts": {
"ng": "ng",
"start": "ng build ngx-scrolltop --watch",
"start:demo": "ng serve",
"start:open": "yarn ng serve --host 0.0.0.0 --disable-host-check",
"build": "ng build ngx-scrolltop --configuration production",
"build:demo": "ng build demo --configuration production",
"build:schematics": "yarn clean:schematics && tsc -p projects/schematics/tsconfig.json && yarn copy:schematics",
"copy:schematics": "cp -a projects/schematics/src/. dist/ngx-scrolltop/schematics",
"clean:schematics": "rm -rf dist/ngx-scrolltop/schematics/",
"deploy:ghpages": "yarn build && yarn build:demo && ngh --dir=dist/demo",
"publish:npmjs": "npm run syncprojects && npm run build && npm publish --folder dist/ngx-scrolltop",
"publish:next": "yarn && yarn syncprojects && yarn build && yarn build:schematics && yarn test --configuration=ci && cd dist/ngx-scrolltop && npm publish --tag next",
"gpr:setup": "yarn tsx scripts/gpr-setup",
"test": "ng test",
"lint": "ng lint",
"tslint-fix": "tslint --fix -p tsconfig.json",
"e2e": "ng e2e",
"create:version": "yarn tsx scripts/create-version",
"postinstall": "yarn create:version",
"syncprojects": "yarn tsx scripts/sync-projects",
"version": "npm run syncprojects && git add ./projects/ngx-scrolltop/",
"postversion": "git push && git push --follow-tags",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \""
},
"dependencies": {
"@angular/animations": "^18.0.3",
"@angular/common": "^18.0.3",
"@angular/compiler": "^18.0.3",
"@angular/core": "^18.0.3",
"@angular/forms": "^18.0.3",
"@angular/platform-browser": "^18.0.3",
"@angular/platform-browser-dynamic": "^18.0.3",
"@angular/router": "^18.0.3",
"rxjs": "^7.4.0",
"seamless-scroll-polyfill": "^2.3.4",
"tslib": "^2.6.3",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.4",
"@angular-devkit/schematics": "^18.0.4",
"@angular-devkit/schematics-cli": "^18.0.3",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.4",
"@angular/compiler-cli": "^18.0.3",
"@angular/language-service": "^18.0.3",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.5",
"ng-packagr": "^18.0.0",
"prettier": "^3.3.1",
"protractor": "~7.0.0",
"tslint-config-prettier": "^1.18.0",
"tsx": "^4.13.2",
"typescript": "~5.4.5"
},
"homepage": "https://github.com/bartholomej/ngx-scrolltop",
"license": "MIT",
"repository": {
"url": "git+https://github.com/bartholomej/ngx-scrolltop.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/ngx-scrolltop/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/bartholomej"
},
"keywords": [
"material",
"angular",
"ngx",
"material design",
"button",
"animate",
"scrollTop",
"scroll to top",
"goToTop",
"go-to-top",
"angular14",
"angular15",
"angular16",
"angular17",
"angular18",
"standalone",
"signals",
"smooth",
"esm",
"sass"
],
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}