-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "hyperlist",
"version": "1.0.0",
"description": "A performant virtual scrolling list library",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"derequire": "^2.0.3",
"faker": "^3.1.0",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.4.5",
"moment": "^2.13.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-faux-dom": "^2.5.0",
"standard": "^10.0.2",
"stringdom": "jugglinmike/stringdom#ec8f199df36157330148b7a2e64b38c1f5008702",
"watchify": "^3.7.0"
},
"keywords": [
"list",
"buffer",
"render",
"html",
"infinite",
"virtual",
"performance",
"dom"
],
"main": "dist/hyperlist.js",
"bugs": {
"url": "https://github.com/tbranyen/hyperlist/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/tbranyen/hyperlist.git"
},
"scripts": {
"build-faux-dom": "browserify -s ReactFauxDOM -r react-faux-dom -o dist/react-faux-dom.js",
"build": "browserify -t [ babelify ] -s HyperList lib/index.js | derequire > dist/hyperlist.js",
"watch": "watchify -t [ babelify ] -s HyperList lib/index.js -o 'derequire > dist/hyperlist.js' -v",
"test": "standard --env mocha && babel-node ./node_modules/istanbul/lib/cli.js cover _mocha -- -R spec"
},
"author": "Tim Branyen (@tbranyen)",
"contributors": [
"Sergi Mansilla <[email protected]>"
],
"license": "MIT"
}