-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 938 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 938 Bytes
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
{
"name": "guide-menu",
"version": "0.2.0",
"description": "The module of react-douban-book with nodejs",
"main": "app.js",
"dependencies": {
"react": "^0.14.5",
"react-dom": "^0.14.5",
"underscore": "^1.7.0"
},
"devDependencies": {
"browserify": "~6.2.0",
"envify": "~3.0.0",
"reactify": "^1.1.1",
"watchify": "~2.1.0"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d .",
"build": "browserify . | uglifyjs -cm > js/bundle.min.js"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-douban/guide-menu.git"
},
"keywords": [
"react",
"node",
"douban"
],
"author": "WhatAKitty",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-douban/guide-menu/issues"
},
"homepage": "https://github.com/react-douban/guide-menu#readme"
}