forked from microsoft/projection-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.88 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"requirejs": {
"config": {
"paths": {
"component/grid/examples": "component/grid/examples"
}
}
},
"name": "projection-grid",
"description": "Client side grid control in JavaScript using pipe and filter patterns.",
"keywords": [],
"author": {
"name": "Ahmed Kamel"
},
"main": "dist/projection-grid.js",
"version": "0.2.1-alpha.11",
"files": [
"dist"
],
"scripts": {
"test": "gulp test",
"prepublish": "gulp prepublish"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.6.0",
"backbone": "^1.3.2",
"backbone-virtualized-listview": "~0.6.3",
"bluebird": "^3.5.1",
"bootstrap": "^3.3.6",
"bootstrap-webpack": "0.0.5",
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"eslint": "^2.5.1",
"eslint-config-xo": "^0.12.0",
"eslint-config-xo-space": "^0.11.0",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"fast-binary-indexed-tree": "~1.0.0",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"gulp-democase": "0.0.1",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-jsdoc3": "^0.3.0",
"gulp-util": "^3.0.7",
"gulp-webdriver": "^2.0.1",
"imports-loader": "^0.6.5",
"isparta-loader": "^2.0.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jade": "^1.11.0",
"jade-loader": "^0.8.0",
"jquery": "^2.2.2",
"js-data": "^2.9.0",
"js-data-http": "^2.2.2",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coverage-es6": "^0.2.7",
"karma-junit-reporter": "^1.1.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"knockout": "^3.4.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"lodash": "^4.6.1",
"mocha": "^2.4.5",
"node-static": "^0.7.7",
"pagination-control": "~0.1.0",
"phantomjs-prebuilt": "^2.1.7",
"requirejs": "^2.2.0",
"resolve": "^1.1.7",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"underscore": "^1.8.3",
"url-loader": "^0.5.7",
"wdio-dot-reporter": "0.0.5",
"wdio-junit-reporter": "0.0.2",
"wdio-mocha-framework": "^0.5.9",
"webdriverio": "^4.0.5",
"webpack": "^1.12.14",
"webpack-stream": "^3.1.0"
},
"peerDependencies": {
"backbone": "^1.3.2",
"backbone-virtualized-listview": "~0.6.2",
"bluebird": "^3.3.4",
"fast-binary-indexed-tree": "~1.0.0",
"jquery": "^2.2.2",
"js-data": "^2.9.0",
"knockout": "^3.4.0",
"underscore": "^1.8.3"
}
}