-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
36 lines (36 loc) · 886 Bytes
/
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
{
"name": "scrollingelement",
"version": "1.5.2",
"description": "A `document.scrollingElement` polyfill.",
"homepage": "https://mths.be/scrollingelement",
"main": "scrollingelement.js",
"keywords": [
"cssom",
"dom",
"scrolling",
"scrollingelement"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/document.scrollingElement.git"
},
"bugs": "https://github.com/mathiasbynens/document.scrollingElement/issues",
"files": [
"LICENSE-MIT.txt",
"scrollingelement.js"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "http-server & sleep 1; open 'http://0.0.0.0:8080/tests/standards-mode.html'; open 'http://0.0.0.0:8080/tests/quirks-mode.html'; wait; killall node"
},
"devDependencies": {
"qunitjs": "^1.18.0"
}
}