-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 935 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 935 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "document-offset",
"description": "Get offset of a DOM Element or Range within the document",
"version": "1.0.4",
"keywords": [
"browser",
"coordinates"
],
"dependencies": {
"dom-support": "*",
"get-document": "1.0.0",
"within-element": "0.1.0"
},
"scripts": {
"start": "make && echo 'Example at: http://localhost:8080/example/' && http-server"
},
"component": {
"scripts": {
"offset/index.js": "index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/timoxley/offset.git"
},
"bugs": {
"url": "https://github.com/timoxley/offset/issues"
},
"homepage": "https://github.com/timoxley/offset",
"main": "index.js",
"contributors": "Nathan Rajlich",
"directories": {
"example": "example"
},
"author": "Tim Oxley",
"license": "MIT",
"devDependencies": {
"component": "^1.1.0",
"http-server": "^0.8.0"
}
}