-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "easydoesit",
"version": "0.0.1",
"description": "Runs the function no more than once per animation frame",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"test": "jest",
"clean": "rm -rf dist && mkdir dist",
"build": "babel index.js --out-file dist/index.js",
"prebuild": "npm run clean",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:me-andre/easydoesit.git"
},
"keywords": [
"debounce",
"throttle",
"requestAnimationFrame"
],
"author": "meandre",
"license": "MIT",
"bugs": {
"url": "https://github.com/me-andre/easydoesit/issues"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-jest": "^24.5.0",
"jest": "^24.5.0",
"raf": "^3.4.1"
}
}