-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "kendo-ui-react",
"version": "0.14.2",
"description": "React Component Library for Kendo UI Widgets. There exists a React Component named for every Kendo widget in the kendo.ui namespace. Tested on React 0.14 and KendoUI 2015.2.902.",
"main": "lib/index.js",
"scripts": {
"dist": "browserify lib/index.js -o dist/kendo-ui-react.js --standalone ReactKendo -t browserify-shim",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/jakubkottnauer/kendo-ui-react.git"
},
"keywords": [
"react",
"kendo",
"react.js",
"react-component",
"kendo-ui",
"telerik",
"components",
"widgets"
],
"author": "Jakub Kottnauer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubkottnauer/kendo-ui-react/issues"
},
"homepage": "https://github.com/jakubkottnauer/kendo-ui-react",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"lodash": ">=3.0.0"
},
"devDependencies": {
"jsdom": "^3.1.2",
"mocha": "^2.1.0",
"browserify": "^10.2.4",
"browserify-shim": "^3.8.8"
},
"browserify-shim": {
"react": "global:React",
"lodash": "global:_"
}
}