-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
93 lines (93 loc) · 2.43 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
{
"name": "node-mc",
"version": "0.2.3",
"author": "Mikhail Davydov <[email protected]>",
"description": "Midnight Commander written in React/Node stack",
"contributors": [
{
"name": "Mikhail Davydov",
"email": "[email protected]"
}
],
"licence": "MIT",
"keywords": [
"mc",
"nmc",
"midnight-commander",
"file-browser"
],
"repository": {
"type": "git",
"url": "git://github.com/azproduction/node-mc.git"
},
"engines": {
"node": ">= 0.11.16",
"iojs": ">= 1.0.0"
},
"dependencies": {
"babel": "^5.6.14",
"commander": "^2.8.1",
"eventemitter3": "^0.1.6",
"exit-hook": "^1.1.1",
"flummox": "^3.5.2",
"highlight.js": "^8.6.0",
"html-tui": "^0.5.0",
"immutable": "^3.6.4",
"keypress": "^0.2.1",
"koa-conditional-get": "~1.0.2",
"koa-etag": "~2.0.0",
"koa-fresh": "0.0.3",
"koa-gzip": "^0.1.0",
"koa-json": "^1.1.1",
"koa-mount": "^1.3.0",
"koa-router": "~3.8.0",
"koa-static": "~1.4.9",
"koa-views": "~2.1.2",
"koa.io": "0.0.3",
"moment": "^2.10.3",
"object-assign": "^2.0.0",
"open": "0.0.5",
"os-homedir": "^1.0.0",
"phantom": "^0.7.2",
"react": "^0.13.1",
"react-document-title": "^1.0.2",
"react-highlight": "^0.4.1",
"react-router": "^0.13.1",
"restore-cursor": "^1.0.0",
"socket.io-client": "^1.3.5",
"source-map-support": "^0.2.10",
"stats.js": "^1.0.0",
"superagent": "^1.1.0",
"term-mouse": "git+https://github.com/azproduction/term-mouse.git#v0.3.0",
"then-jade": "^2.2.1"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel-core": "^5.6.15",
"babel-loader": "^5.3.1",
"babel-runtime": "^5.6.15",
"css-loader": "^0.9.1",
"esprima-fb": "^13001.1001.0-dev-harmony-fb",
"file-loader": "^0.8.3",
"husky": "^0.7.0",
"jscs": "^1.12.0",
"jshint": "^2.6.3",
"react-hot-loader": "^1.2.3",
"style-loader": "^0.8.3",
"stylus-loader": "^1.0.0",
"url-loader": "^0.5.6",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.7.0"
},
"bin": {
"nmc": "./bin/nmc"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"debug": "NODE_ENV=development ./bin/nmc --client 'Google Chrome' --wait-on-disconnect --client-show-stats --client-mutation-observer --client-scale='5,7'",
"start": "./bin/nmc",
"test": "jscs .",
"precommit": "npm test",
"prepush": "npm test"
}
}