-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "scrollblum",
"version": "2.0.0",
"description": "A petite vanilla js infinite scroller",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "budo example/browser.js --css 'example/style.css' --live --open -- -t babelify",
"build": "browserify index.es6 -t babelify -o dist/index.js",
"build-global": "browserify index.es6 -t babelify --standalone ScrollBlum > dist/standalone-index.js",
"pre-publish": "npm run build"
},
"author": "vegetableman <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"budo": "^10.0.4",
"domready": "^1.0.8",
"windowify": "^0.3.0"
},
"dependencies": {
"css-styler": "^1.0.0",
"debounce": "^1.0.2",
"event-emitter-es6": "^1.1.5",
"hyperscript": "^2.0.2",
"queryselectorall": "^0.1.0",
"raf": "^3.3.2"
},
"keywords": [
"infinite-scroll",
"vanillajs",
"virtual-list",
"plain",
"js"
]
}