-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 779 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 779 Bytes
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
{
"name": "rangefix",
"version": "0.3.1",
"description": "Workaround for browser bugs in Range.prototype.getClientRects and Range.prototype.getBoundingClientRect.",
"license": "MIT",
"author": "Ed Sanders",
"homepage": "http://edg2s.github.io/rangefix/",
"repository": {
"type": "git",
"url": "https://github.com/edg2s/rangefix"
},
"main": "src/rangefix.js",
"files": [
"src/"
],
"scripts": {
"test": "npm run qunit && npm run lint",
"lint": "eslint . && stylelint **/*.css",
"qunit": "karma start"
},
"devDependencies": {
"eslint-config-wikimedia": "0.32.3",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-qunit": "^4.2.1",
"qunit": "^2.25.0",
"stylelint-config-wikimedia": "0.18.0"
}
}