-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "@gen-tech/position-tracker",
"version": "0.0.0",
"description": "Library to track DOM element position on the browser",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://gen-tech.github.io/position-tracker",
"scripts": {
"prepare": "tsc",
"document": "typedoc --out docs --excludeNotExported --excludePrivate --disableOutputCheck --gitRevision master --exclude \"**/+(as-proto|as-static)/**/*ts\"",
"prepare-github-pages": "npm run document && echo \"\" > ./docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gen-tech/position-tracker.git"
},
"keywords": [
"dom",
"element",
"position",
"tracker",
"observable"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/gen-tech/position-tracker/issues"
},
"devDependencies": {
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"update-json": "^1.0.0"
},
"dependencies": {
"@gen-tech/js-utils": "^0.16.1",
"@gen-tech/resize-manager": "^0.1.4",
"@gen-tech/scroll-manager": "^0.2.1"
}
}