forked from Hyperline/hyperline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1005 Bytes
/
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
{
"name": "hyperline",
"version": "0.6.0",
"description": "Handy status line for Hyper.app",
"keywords": [
"hyper.app",
"hyper",
"hyperterm"
],
"main": "dist/hyperline.js",
"author": "Nick Tikhonov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NickTikhonov/hyperterm-hyperline.git"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.3.0",
"eslint-config-idiomatic": "^2.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^6.1.1",
"webpack": "^1.13.1",
"webpack-node-externals": "^1.3.3"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"build": "NODE_ENV=production webpack",
"dev": "webpack --watch"
},
"dependencies": {
"color": "^0.11.3",
"json-loader": "^0.5.4",
"public-ip": "^2.0.1",
"systeminformation": "^3.4.1"
}
}