-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mjolnir.js",
"description": "An Event Manager",
"version": "3.0.0-alpha.4",
"type": "module",
"keywords": [
"hammerjs",
"touch",
"gesture",
"mouse",
"keyboard",
"event manager"
],
"repository": {
"type": "git",
"url": "https://github.com/visgl/mjolnir.js"
},
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"src",
"dist",
"dist.min.js"
],
"scripts": {
"bootstrap": "yarn && ocular-bootstrap",
"build": "ocular-clean && ocular-build && npm run build-bundle",
"build-bundle": "ocular-bundle ./src/index.ts",
"lint": "ocular-lint",
"cover": "ocular-test cover",
"publish-prod": "ocular-publish version-only-prod",
"publish-beta": "ocular-publish version-only-beta",
"test": "ocular-test"
},
"pre-commit": [
"test"
],
"devDependencies": {
"@vis.gl/dev-tools": "1.0.0-alpha.18",
"@vis.gl/ts-plugins": "1.0.0-alpha.18",
"jsdom": "^16.0.0",
"pre-commit": "^1.2.2",
"puppeteer": "^22.0.0"
},
"volta": {
"node": "20.15.1",
"yarn": "4.3.1"
}
}