-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "tapspace",
"version": "2.0.0-alpha.24",
"description": "A zoomable user interface lib for web apps",
"keywords": [
"zoomable",
"zooming",
"user interface",
"ui",
"frontend",
"scenegraph",
"html",
"layout",
"zui",
"css",
"transform",
"transformation",
"multitouch",
"touch",
"gesture"
],
"homepage": "https://github.com/taataa/tapspace",
"main": "index.js",
"unpkg": "dist/tapspace.min.js",
"author": {
"name": "Akseli Palen",
"email": "akseli.palen@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/taataa/tapspace.git"
},
"license": "MIT",
"dependencies": {
"affineplane": "^2.20.0",
"component-emitter": "^1.3.0",
"loadimages": "^1.0.0",
"nudged": "^2.1.1"
},
"devDependencies": {
"finalhandler": "^1.3.1",
"genversion": "^3.2.0",
"puppeteer": "^23.10.2",
"qrcode-terminal": "^0.12.0",
"semver": "^7.6.3",
"serve-index": "^1.9.1",
"serve-static": "^1.16.2",
"standard": "^17.1.2",
"tape": "^5.9.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"yamdog": "^2.1.0"
},
"scripts": {
"audit": "npm audit --omit=dev",
"start": "node docs/examples/server.js",
"build": "webpack",
"build:production": "webpack --mode production",
"build:watch": "webpack --watch",
"build:docs": "node docs/api/v2/generate.js",
"lint": "standard 'lib/**/*.js' 'test/**/*.js' && echo 'OK'",
"lint:fix": "standard --fix 'lib/**/*.js' 'test/**/*.js'",
"lint:lib": "standard 'lib/**/*.js'",
"test": "npm run lint && npm run build && npm run test:headless",
"test:headless": "node test/run.mjs",
"release": "npm run lint && npm run gv && npm run build:production && npm run build:docs && npm publish --tag alpha",
"gv": "genversion lib/version.js"
}
}