-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "frame-throttle",
"version": "3.0.0",
"description": "A lightweight way to throttle events and callbacks using requestAnimationFrame",
"main": "dist/index.js",
"module": "dist/frame-throttle.esm.js",
"typings": "dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"scripts": {
"coveralls": "tsdx test --coverage --coverageReporters=text-lcov | coveralls",
"build": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test --coverage"
},
"keywords": [
"callback",
"events",
"frame",
"handler",
"listener",
"requestAnimationFrame",
"setTimeout",
"throttle"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pelotoncycle/frame-throttle.git"
},
"author": "Mike Deverell <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pelotoncycle/frame-throttle/issues"
},
"homepage": "https://github.com/pelotoncycle/frame-throttle#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --no-restage --bail"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/mock-raf": "^1.0.2",
"coveralls": "^3.0.4",
"husky": "^2.4.1",
"mock-raf": "^1.0.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"tsdx": "^0.9.3",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
}
}