forked from JonnyBGod/ngx-scrollspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.79 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.79 KB
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
{
"name": "@oasisdigital/ngx-scrollspy",
"version": "1.1.0",
"description": "Angular ScrollSpy Service",
"author": "Oasis Digital <team@oasisdigital.com>",
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"@types/core-js": "^0.9.41",
"@types/jasmine": "^2.5.47",
"@types/node": "^8.0.47",
"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": "^5.3.0",
"semantic-release": "^15.1.2",
"source-map-loader": "^0.2.3",
"systemjs": "^0.20.12",
"ts-helpers": "^1.1.1",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.2",
"typescript": "~2.6.2",
"webpack": "^3.8.1",
"zone.js": "^0.8.20"
},
"bugs": {
"url": "https://github.com/OasisDigital/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 && 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/OasisDigital/ngx-scrollspy.git"
},
"keywords": [
"angular2",
"ng2",
"angular",
"scrollspy",
"scroll",
"spy",
"index",
"parallax",
"infinite",
"infinite-scroll",
"affix",
"effect"
],
"license": "MIT",
"engines": {
"node": ">=6.9.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}