-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
99 lines (99 loc) · 2.86 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
{
"name": "ngx-scrollspy",
"description": "Angular ScrollSpy Service",
"author": "João Ribeiro <[email protected]> (http://github.com/JonnyBGod)",
"devDependencies": {
"@angular/common": "^6.1.3",
"@angular/compiler": "^6.1.3",
"@angular/compiler-cli": "^6.1.3",
"@angular/core": "^6.1.3",
"@angular/platform-browser": "^6.1.3",
"@angular/platform-browser-dynamic": "^6.1.3",
"@angular/router": "^6.1.3",
"@types/core-js": "^0.9.41",
"@types/jasmine": "^2.5.47",
"@types/node": "^10.1.4",
"awesome-typescript-loader": "^3.3.0",
"codelyzer": "^4.0.0",
"commitizen": "^2.9.6",
"concurrently": "^3.4.0",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^2.0.0",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "^2.5.1",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"ng-packagr": "^1.5.0-rc.1",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.1",
"rxjs": "^6.2.2",
"semantic-release": "^8.2.0",
"source-map-loader": "^0.2.1",
"systemjs": "^0.20.12",
"ts-helpers": "^1.1.1",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.2",
"typescript": "^2.9.2",
"webpack": "^3.8.1",
"zone.js": "^0.8.26"
},
"bugs": {
"url": "http://github.com/jonnybgod/ngx-scrollspy/issues"
},
"scripts": {
"rimraf": "rimraf",
"lint": "tslint ./src/{,*/}*.ts",
"pretest": "npm run rimraf -- dist coverage",
"test": "karma start",
"test-watch": "karma start --singleRun=false --autoWatch=true",
"clean": "npm cache clean --force && npm run rimraf -- node_modules dist coverage",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm i",
"commit": "git-cz",
"prebuild": "npm run rimraf -- dist",
"build": "ng-packagr -p ng-package.json",
"semantic-release": "semantic-release pre && npm run build && npm publish dist && semantic-release post"
},
"main": "dist/bundles/ngx-scrollspy.umd.js",
"module": "dist/ngx-scrollspy.es5.js",
"typings": "dist/ngx-scrollspy.d.ts",
"es2015": "dist/ngx-scrollspy.js",
"metadata": "dist/ngx-scrollspy.metadata.json",
"repository": {
"type": "git",
"url": "https://github.com/jonnybgod/ngx-scrollspy.git"
},
"keywords": [
"angular2",
"ng2",
"angular",
"scrollspy",
"scroll",
"spy",
"index",
"parallax",
"infinite",
"infinite-scroll",
"affix",
"effect"
],
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@angular/cli": "^6.1.4",
"rxjs-tslint": "^0.1.5"
}
}