-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "@braid/rafscroll",
"repository": {
"type": "git",
"url": "https://github.com/wearebraid/rafscroll"
},
"version": "2.0.0",
"description": "Eased scrolling (smooth scroll) using requestAnimationFrame",
"main": "dist/rafscroll.js",
"module": "dist/rafscroll.esm.js",
"scripts": {
"build": "webpack --config webpack.build.config.js",
"examples-dev": "./node_modules/.bin/webpack --progress --colors --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"keywords": [
"smooth",
"scrolling",
"raf",
"requestanimationframe",
"scroll",
"request animation frame"
],
"author": "Justin Schroeder <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@purtuga/esm-webpack-plugin": "^1.2.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"jest": "^25.1.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}