-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "smart-table-scroll",
"version": "0.2.0",
"description": "Build scrollable tables w/ many(1MM) rows.",
"main": "src/smart-table-scroll.js",
"scripts": {
"test": "echo 'Tests... WIP.'",
"serve": "./node_modules/serve/bin/serve -p 5050",
"build": "./node_modules/browserify/bin/cmd.js src/smart-table-scroll.js -o smart-table-scroll.js -s SmartTableScroll && ./node_modules/uglify-js/bin/uglifyjs smart-table-scroll.js -o smart-table-scroll.min.js && echo 'Done building.'"
},
"repository": {
"type": "git",
"url": "https://github.com/cmpolis/smart-table-scroll"
},
"keywords": [
"table",
"scroll",
"browser",
"data"
],
"author": "Chris Polis, @ChrisPolis",
"license": "MIT",
"bugs": {
"url": "https://github.com/cmpolis/smart-table-scroll/issues"
},
"homepage": "https://github.com/cmpolis/smart-table-scroll",
"dependencies": {
"lodash.sortedindex": "^3.1.1"
},
"devDependencies": {
"browserify": "^11.0.1",
"serve": "^1.4.0",
"uglify-js": "^2.4.24"
}
}