-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.73 KB
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
{
"name": "overviewer",
"version": "0.2.0",
"description": "View the output of multiple programs at the same time",
"main": "lib",
"scripts": {
"prepublish": "npm run compile",
"compile": "webpack",
"auto-compile": "webpack --watch",
"start": "node lib/index.js",
"test": "mocha --compilers js:babel-core/register",
"auto-test": "mocha --compilers js:babel-core/register --watch"
},
"bin": {
"overviewer": "lib/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/renke/overviewer.git"
},
"author": "Renke Grunwald <renke@renke.org> (https://github.com/renke)",
"license": "ISC",
"bugs": {
"url": "https://github.com/renke/overviewer/issues"
},
"homepage": "https://github.com/renke/overviewer#readme",
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.2",
"babel-eslint": "^4.1.4",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-0": "^6.1.2",
"chai": "^3.4.1",
"depcheck": "^0.5.9",
"eslint": "^1.8.0",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-import": "^0.9.1",
"eslint-plugin-react": "^3.7.1",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"mocha": "^2.3.3",
"nodemon": "^1.8.1",
"npm-check-updates": "^2.4.2",
"sinon": "^1.17.2",
"webpack": "^1.12.3"
},
"dependencies": {
"babel-polyfill": "^6.1.19",
"react-redux": "^4.0.0",
"redux-thunk": "^1.0.0",
"blessed": "^0.1.81",
"immutable": "^3.7.5",
"react": "^0.14.0",
"react-blessed": "^0.1.7",
"reduce-reducers": "^0.1.1",
"redux": "^3.0.4",
"relaxed-json": "^1.0.0",
"source-map-support": "^0.3.3"
}
}