-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "biggus-griddus",
"version": "0.1.0",
"description": "A data table solution for the browser, supporting filtering, sorting and scrolling through very large data sets.",
"main": "biggus.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test-node && npm run test-browser",
"test-node": "karma run",
"test-browser": "karma start --single-run",
"build": "tsc --sourcemap --module amd biggus.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/drewnoakes/biggus-griddus.git"
},
"keywords": [
"data",
"table",
"grid",
"typescript",
"datatable",
"datagrid",
"data",
"grid"
],
"author": "Drew Noakes",
"license": "LGPL v3",
"bugs": {
"url": "https://github.com/drewnoakes/biggus-griddus/issues"
},
"homepage": "https://github.com/drewnoakes/biggus-griddus",
"devDependencies": {
"gulp": "^3.8.7",
"gulp-tsc": "^0.9.2",
"karma": "^0.12.22",
"karma-chrome-launcher": "^0.1.4",
"karma-jasmine": "^0.1.5",
"karma-requirejs": "^0.2.2",
"requirejs": "^2.1.14"
}
}