-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "westures",
"version": "1.1.1",
"description": "Robust n-pointer multitouch gesture detection library for JavaScript",
"author": "Michael van der Kamp <michael.vanderkamp@usask.ca>",
"keywords": [
"multitouch",
"gesture",
"library",
"tap",
"pan",
"pinch",
"rotate",
"press",
"swipe",
"swivel",
"track",
"simultaneous",
"gestures",
"touch",
"mouse",
"pointer"
],
"source": "index.js",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/mvanderkamp/westures"
},
"homepage": "https://mvanderkamp.github.io/westures/",
"license": "MIT",
"scripts": {
"build": "parcel build",
"build:debug": "parcel build --no-optimize",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"docs": "jsdoc -c .jsdocrc.json",
"lint": "eslint src test index.js",
"lint:fix": "eslint --fix src test index.js",
"test": "jest",
"test:debug": "node inspect $(npm bin)/jest --runInBand"
},
"jest": {
"modulePaths": [
"<rootDir>",
"<rootDir>/src/"
],
"setupFilesAfterEnv": [
"./core/test/setup.js"
],
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/test/"
],
"fakeTimers": {
"enableGlobally": true,
"legacyFakeTimers": true
}
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"coveralls-next": "^4.2.1",
"docdash": "^2.0.1",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdoc": "^4.0.2",
"parcel": "^2.8.3",
"underscore": "^1.13.6"
}
}