-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 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
48
49
{
"name": "react-layout",
"version": "1.1.0",
"description": "Dynamic subview layout for React",
"main": "./lib/layout",
"scripts": {
"demo:watch": "watchy -w . -i 'node_modules|build|cache.json' -- npm run demo:build",
"demo:build": "mkdir -p example/build && browserifyinc -t babelify example/index.js --cachefile example/build/cache.json > example/build/bundle.js",
"test": "npm run prepublish && tap test",
"prepublish": "cake build"
},
"author": "James Friend",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/jsdf/react-layout/master/LICENSE"
}
],
"files": [
"index.js",
"mixin.js",
"lib/"
],
"keywords": [
"react-component",
"react",
"layout"
],
"homepage": "https://github.com/jsdf/react-layout",
"bugs": "https://github.com/jsdf/react-layout/issues",
"repository": {
"type": "git",
"url": "git://github.com/jsdf/react-layout.git"
},
"devDependencies": {
"babel": "^4.4.2",
"babelify": "^5.0.3",
"browserify-incremental": "^1.5.0",
"coffee-script": "^1.7.1",
"node-jsx": "^0.12.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"tap": "^0.4.13",
"watchy": "^0.6.0"
},
"dependencies": {
"xtend": "^4.0.0"
}
}