-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
80 lines (80 loc) · 2.07 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
{
"name": "angular-ui-scroll",
"description": "AngularJS virtual scrolling module",
"version": "1.9.1",
"src": "./src/",
"public": "./dist/",
"main": "./dist/ui-scroll.js",
"homepage": "https://github.com/angular-ui/ui-scroll",
"author": {
"name": "Michael Feingold",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Denis Hilt",
"web": "https://github.com/dhilt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/angular-ui/ui-scroll.git"
},
"bugs": {
"url": "https://github.com/angular-ui/ui-scroll/issues"
},
"license": "MIT",
"scripts": {
"prod-build": "webpack --color",
"prod-test": "karma start test/config/karma.conf.js",
"dev-server": "webpack-dev-server --color",
"dev-test": "karma start test/config/karma.conf.js",
"hint-test": "jshint --verbose test",
"hint-src": "jshint --verbose src",
"build": "npm run hint-src && npm run prod-build && npm run hint-test && npm run prod-test",
"dev": "npm-run-all --parallel dev-server dev-test",
"test": "npm run dev-test",
"start": "npm run dev-server"
},
"peerDependencies": {
"angular": ">=1.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"jasmine-core": "^4.6.0",
"jshint": "^2.13.6",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^19.9.1",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
},
"keywords": [
"angular",
"angularjs",
"angular.ui",
"angular-ui",
"ui.scroll",
"ui-scroll",
"angular-ui-scroll",
"virtual",
"unlimited",
"infinite",
"live",
"perpetual",
"scroll",
"scroller",
"scrolling"
]
}