-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "terminal-devtools",
"version": "1.0.5-rc1",
"bin": {
"devtools": "./cmd.js"
},
"main": "index.js",
"scripts": {
"build": "babel src --out-dir compiled/ --source-maps",
"lint": "spacey-standard",
"watch": "npm-watch"
},
"spacey-standard": {
"parser": "babel-eslint",
"ignore": [
"compiled/**",
"examples/**"
]
},
"files": [
"compiled",
"cmd.js",
"index.js"
],
"watch": {
"build": "src/**/*.js"
},
"author": "David Mark Clements",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.3.14",
"blessed": "^0.1.81",
"minimist": "^1.2.0",
"react": "^0.14.3",
"react-blessed": "davidmarkclements/react-blessed#patches",
"react-functional": "^1.2.0",
"react-redux": "^4.0.1",
"redux": "^3.0.5",
"redux-logger": "^2.3.1",
"redux-thunk": "^1.0.2",
"source-map-support": "^0.4.0",
"yadc": "0.0.1"
},
"description": "Terminal based Devtools for Node",
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-eslint": "^5.0.0-beta6",
"npm-watch": "0.0.1",
"spacey-standard": "^1.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apparatus/terminal-devtools.git"
},
"bugs": {
"url": "https://github.com/apparatus/terminal-devtools/issues"
},
"homepage": "https://github.com/apparatus/terminal-devtools#readme"
}