This repository was archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 KB
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
{
"name": "@dougalg/pan-handler",
"version": "1.0.1",
"description": "A simple zoom and pan library for canvas",
"main": "build/PanHandler.js",
"typings": "build/PanHandler.d.ts",
"scripts": {
"lint": "tslint ./src/**/*.{js,ts}",
"test": "jest",
"prebuild": "rm -rf build",
"build": "npm run build:es2015",
"build:es2015": "tsc --outDir ./build",
"build:docs-js": "tsc --outDir ./docs/out/assets/js/pan-handler --module none",
"postdocs": "npm run build:docs-js && cp -R ./docs/src/tutorials/assets/. ./docs/out/assets/js && bash ./docs/trim-lines.sh",
"docs": "typedoc ./src",
"docs:deploy": "gh-pages -d docs/out"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dougalg/pan-handler.git"
},
"keywords": [
"canvas",
"zoom",
"pan"
],
"author": "Dougal Graham",
"license": "ISC",
"bugs": {
"url": "https://github.com/dougalg/pan-handler/issues"
},
"homepage": "https://github.com/dougalg/pan-handler#readme",
"devDependencies": {
"@types/jest": "24.0.18",
"canvas": "2.6.0",
"gh-pages": "2.1.1",
"jest": "24.9.0",
"ts-jest": "24.0.2",
"tslint": "5.20.0",
"typedoc": "0.15.0",
"typedoc-plugin-external-module-name": "2.1.0",
"typedoc-plugin-internal-external": "2.0.2",
"typedoc-plugin-tutorials": "0.0.1-alpha.1",
"typescript": "3.6.2"
},
"dependencies": {}
}