forked from handsontable/handsontable
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "handsontable",
"description": "Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs",
"homepage": "http://handsontable.com/",
"repository": {
"type": "git",
"url": "https://github.com/handsontable/handsontable.git"
},
"bugs": {
"url": "https://github.com/handsontable/handsontable/issues"
},
"author": "Handsoncode <[email protected]>",
"version": "0.20.2",
"keywords": [
"data",
"grid",
"table",
"editor",
"grid-editor",
"data-grid",
"data-table",
"spreadsheet",
"excel",
"tabular-data",
"edit-cell",
"editable-table",
"data-spreadsheet"
],
"dependencies": {
"moment": "^2.9.0",
"pikaday": "^1.3.2",
"zeroclipboard": "^2.2.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-connect": "~0.8.0",
"grunt-contrib-jasmine": "~0.5.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-gitinfo": "~0.1.6",
"grunt-jscs": "^2.1.0",
"grunt-saucelabs": "~8.3.3",
"hot-builder": "^0.4.0",
"load-grunt-tasks": "^3.0.0",
"time-grunt": "~1.0.0"
},
"scripts": {
"test": "grunt test -v"
},
"browser": "./src/browser.js",
"license": "MIT",
"builderDependencies": {
"moment": {
"include": [
"moment.js"
],
"copyable": [
"moment.js",
"locale",
"LICENSE"
],
"global": "moment"
},
"pikaday": {
"include": [
"pikaday.js",
"css/pikaday.css"
],
"copyable": [
"pikaday.js",
"css/pikaday.css",
"LICENSE"
],
"global": "Pikaday"
},
"zeroclipboard": {
"include": [
"dist/ZeroClipboard.js"
],
"copyable": [
"dist/ZeroClipboard.js",
"dist/ZeroClipboard.swf",
"LICENSE"
],
"global": "ZeroClipboard"
},
"numeral": {
"global": "numeral"
}
}
}