-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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": "virtual-scroll",
"version": "2.2.1",
"description": "Custom scroll events for smooth, fake scroll",
"main": "lib/virtualscroll.js",
"source": "src/index.js",
"scripts": {
"build": "microbundle build -i src/index.js --format umd --compress --no-sourcemap --no-pkg-main --external none",
"test": "browserify test/index.js | smokestack | faucet",
"test-debug": "budo test/index.js --live"
},
"repository": {
"type": "git",
"url": "https://github.com/ayamflow/virtual-scroll"
},
"keywords": [
"virtual",
"scroll",
"smooth"
],
"author": "Florian Morel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayamflow/virtual-scroll/issues"
},
"homepage": "https://github.com/ayamflow/virtual-scroll",
"dependencies": {
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"budo": "^9.4.7",
"faucet": "0.0.1",
"microbundle": "^0.13.0",
"smokestack": "^3.4.1",
"tape": "^4.6.3",
"tiny-trigger": "scottcorgan/tiny-trigger"
}
}