hyper/app/package.json
Guillermo Rauch aaed99abac Reorg (#386)
* Step 1: move electorn into `app/`.

This is to comply with the suggested directory format of
`electron-builder`: https://github.com/electron-userland/electron-builder#two-packagejson-structure

* Step 2: add build directory with icon files for mac / windows

* Step 3: move all development (web) assets into main directory

* Step 4: add `build` namespace to dev `package.json`

* Step 5: move all dev dependencies into dev file and get rid of
old electron packagers in favor of `eletorn-builder`

* Step 6: target build inside `app/` as everything else is excluded at build time

* Step 7: remove old stuff!

* Step 8: update README

* turn off asar for `child_pty`
2016-07-24 10:59:21 -07:00

40 lines
810 B
JSON

{
"name": "hyperterm",
"productName": "HyperTerm",
"version": "0.7.0-beta",
"license": "MIT",
"author": "rauchg",
"repository": "zeit/hyperterm",
"description": "HTML/JS/CSS Terminal",
"dependencies": {
"child_pty": "3.0.1",
"convert-css-color-name-to-hex": "0.1.1",
"default-shell": "1.0.1",
"electron-config": "0.2.1",
"electron-is-dev": "0.1.1",
"gaze": "1.1.0",
"mkdirp": "0.5.1",
"ms": "0.7.1",
"shell-env": "0.1.2",
"uid2": "0.0.3"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"yoda": 0,
"semi": [
2,
"always"
],
"no-unused-vars": 2,
"no-extra-semi": 2,
"semi-spacing": [
2,
{
"before": false,
"after": true
}
]
}
}
}