-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
136 lines (136 loc) · 4.08 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
128
129
130
131
132
133
134
135
136
{
"name": "@thisissoon/angular-inviewport",
"version": "4.2.2",
"description": "A simple lightweight library for Angular that detects when an element is within the browser viewport and adds a sn-viewport--in or sn-viewport--out class to the element.",
"keywords": [
"angular",
"directive",
"viewport",
"in viewport",
"scroll",
"resize",
"ngx-inviewport",
"ngx-in-viewport"
],
"author": "SOON_ <[email protected]>",
"contributors": [
"Ed Opare-Aryee <[email protected]>",
"Jack matthews <[email protected]>",
"Sergey Krilov <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thisissoon/angular-inviewport"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "npm run stylelint && npm run nglint && npm run prettier",
"lint:fix": "npm run stylelint -- --fix && npm run nglint -- --fix && npm run prettier -- --write",
"nglint": "ng lint",
"stylelint": "stylelint --syntax scss \"src/**/*.{css,scss}\"",
"prettier": "prettier --config .prettierrc -l \"src/**/*.{ts,js,json,css,scss}\"",
"e2e": "ng e2e",
"coverage": "coveralls < coverage/lcov.info",
"packagr": "ng-packagr -p package.json",
"build:ssr": "npm run build:client-and-server-bundles && npm run webpack:server",
"serve:ssr": "node dist/server.js",
"build:client-and-server-bundles": "ng build --prod && ng run angular-inviewport:server",
"webpack:server": "webpack --config webpack.server.js --progress --colors",
"release": "standard-version",
"postrelease": "npm run packagr"
},
"private": false,
"peerDependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.4",
"@angular/animations": "10.0.5",
"@angular/cli": "10.0.4",
"@angular/common": "10.0.5",
"@angular/compiler": "10.0.5",
"@angular/compiler-cli": "10.0.5",
"@angular/core": "10.0.5",
"@angular/platform-browser": "10.0.5",
"@angular/platform-browser-dynamic": "10.0.5",
"@angular/platform-server": "10.0.5",
"@nguniversal/express-engine": "^10.0.1",
"@thisissoon/schematics": "^1.0.0-alpha.17",
"@types/jasmine": "^3.5.11",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^14.0.25",
"codelyzer": "^6.0.0",
"core-js": "^3.6.5",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.2.0",
"express": "^4.16.3",
"husky": "^4.2.5",
"intersection-observer": "^0.11.0",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^10.2.11",
"ng-packagr": "^10.0.0",
"prettier": "^2.0.5",
"protractor": "^7.0.0",
"rxjs": "^6.6.0",
"standard-version": "^8.0.2",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"ts-loader": "^8.0.1",
"ts-node": "^8.10.2",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "~3.9.7",
"zone.js": "~0.10.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ngPackage": {
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"lib": {
"entryFile": "src/index.ts"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"tslint --fix",
"git add"
],
"src/**/*.{css,scss}": [
"stylelint --syntax scss --fix",
"git add"
],
"src/**/*.{ts,js,json,css,scss}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"dependencies": {
"tslib": "^2.0.0"
}
}