-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "@nicky-lenaers/ngx-scroll-tracker",
"version": "0.2.2",
"description": "Angular X Scroll Tracker",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf .tmp && rimraf dist",
"copy": "copyfiles -u 1 ./src/package.json dist && copyfiles README.md dist",
"transpile": "ngc",
"package": "rollup -c rollup.config.ts",
"minify": "uglifyjs dist/bundles/ngx-scroll-tracker.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngx-scroll-tracker.umd.min.js",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copy",
"prepublish": "npm run build",
"publish": "cd ./dist && npm publish --access=public",
"test": "echo \"No test command\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicky-lenaers/ngx-scroll-tracker.git"
},
"keywords": [
"ngx",
"ngx-scroll-tracker",
"angular",
"angular2",
"angular 2",
"angular4",
"angular 4"
],
"author": {
"name": "Nicky Lenaers",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nicky-lenaers/ngx-scroll-tracker/issues"
},
"homepage": "https://github.com/nicky-lenaers/ngx-scroll-tracker#readme",
"engines": {
"node": ">=7.10.0",
"npm": ">=4.2.0"
},
"private": false,
"dependencies": {
"@angular/common": "^4.2.2",
"@angular/core": "^4.2.2",
"@angular/platform-browser": "^4.2.2",
"rxjs": "^5.4.0",
"zone.js": "^0.8.12"
},
"devDependencies": {
"@angular/compiler": "^4.2.2",
"@angular/compiler-cli": "^4.2.2",
"@types/node": "^7.0.31",
"copyfiles": "^1.2.0",
"renamer": "^0.6.1",
"rimraf": "^2.6.1",
"rollup": "^0.43.0",
"typescript": "^2.3.4",
"uglify-js": "^3.0.16"
}
}