-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "ng2-go-top-button",
"version": "8.0.6",
"description": "A simple customizable go-to-top button component for Angular 2+ projects",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"author": "Anna Pohorielova <anya.pogorelova@gmail.com>",
"scripts": {
"clean-dist": "rm -rf dist/",
"clean-modules": "rm -rf node_modules",
"clean": "npm run clean-dist && npm run clean-modules",
"build": "npm i && npm run clean-dist && ngc -p tsconfig-build.json"
},
"contributors": [
{
"name": "Anna Pohorielova",
"email": "anya.pogorelova@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/annapogorelova/ng2-go-top-button.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"angular",
"ng",
"go",
"top",
"button"
],
"license": "MIT",
"peerDependencies": {
"@angular/animations": ">=8.0.0 <9.0.0",
"@angular/common": ">=8.0.0 <9.0.0",
"@angular/core": ">=8.0.0 <9.0.0",
"@angular/platform-browser": ">=8.0.0 <9.0.0"
},
"devDependencies": {
"@angular-devkit/schematics": "^9.1.7",
"@angular/animations": "^8.2.14",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/compiler-cli": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@types/core-js": "^2.5.3",
"rxjs": "^6.5.5",
"tsickle": "^0.34.3",
"typescript": "^3.4.5",
"zone.js": "^0.9.1"
}
}