-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "react-kendo",
"version": "0.14.0",
"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.12 and KendoUI 2014.3.1411.",
"main": "lib/index.js",
"scripts": {
"dist": "browserify lib/index.js -o dist/react-kendo.js --standalone ReactKendo -t browserify-shim",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/tjwebb/react-kendo.git"
},
"keywords": [
"react",
"kendo",
"react.js",
"react-component",
"kendo-ui",
"telerik",
"components",
"widgets"
],
"author": "Travis Webb <me@traviswebb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjwebb/react-kendo/issues"
},
"homepage": "https://github.com/tjwebb/react-kendo",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"lodash": ">=3.0.0"
},
"devDependencies": {
"browserify": "^11.2.0",
"browserify-shim": "^3.8.10",
"jsdom": "^7.0.1",
"mocha": "^2.3.3"
},
"browserify-shim": {
"react": "global:React",
"react-dom/server": "global:React",
"react-dom": "global:ReactDOM",
"lodash": "global:_"
}
}