mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
120 lines
2.9 KiB
JSON
120 lines
2.9 KiB
JSON
{
|
|
"name": "hyperterm",
|
|
"version": "1.0.0",
|
|
"description": "Web app that runs in the renderer process",
|
|
"repository": "zeit/hyperterm",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Zeit, Inc.",
|
|
"email": "team@zeit.co"
|
|
},
|
|
"greenkeeper": {
|
|
"emails": false
|
|
},
|
|
"dependencies": {
|
|
"aphrodite-simple": "0.4.1",
|
|
"color": "0.11.3",
|
|
"electron-mocha": "^3.0.0",
|
|
"hterm-umdjs": "1.1.3",
|
|
"json-loader": "0.5.4",
|
|
"mocha": "^3.0.0",
|
|
"mousetrap": "1.6.0",
|
|
"ms": "0.7.1",
|
|
"object-values": "1.0.0",
|
|
"php-escape-shell": "1.0.0",
|
|
"react": "15.3.2",
|
|
"react-addons-pure-render-mixin": "15.3.2",
|
|
"react-deep-force-update": "2.0.1",
|
|
"react-dom": "15.3.2",
|
|
"react-redux": "4.4.5",
|
|
"redux": "3.6.0",
|
|
"redux-thunk": "2.1.0",
|
|
"reselect": "2.5.4",
|
|
"seamless-immutable": "6.1.1",
|
|
"should": "^11.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.11.4",
|
|
"babel-core": "^6.11.4",
|
|
"babel-loader": "^6.2.4",
|
|
"babel-preset-react": "^6.11.1",
|
|
"concurrently": "^2.2.0",
|
|
"copy-webpack-plugin": "^3.0.1",
|
|
"electron": "1.4.0",
|
|
"electron-builder": "^7.0.1",
|
|
"electron-devtools-installer": "^2.0.0",
|
|
"eslint-config-xo-react": "^0.9.0",
|
|
"eslint-plugin-react": "^6.2.2",
|
|
"husky": "^0.11.6",
|
|
"redux-logger": "^2.6.1",
|
|
"webpack": "^2.1.0-beta.15",
|
|
"xo": "^0.16.0"
|
|
},
|
|
"xo": {
|
|
"extends": "xo-react",
|
|
"esnext": true,
|
|
"space": true,
|
|
"env": [
|
|
"browser",
|
|
"node",
|
|
"mocha"
|
|
],
|
|
"rules": {
|
|
"react/jsx-filename-extension": 0,
|
|
"react/prop-types": 0,
|
|
"babel/new-cap": 0,
|
|
"quote-props": 0,
|
|
"import/no-extraneous-dependencies": 0,
|
|
"no-warning-comments": 0,
|
|
"complexity": 0,
|
|
"react/no-danger": 0,
|
|
"react/no-string-refs": 0,
|
|
"react/jsx-key": 0,
|
|
"no-nested-ternary": 0,
|
|
"react/jsx-no-bind": 0
|
|
},
|
|
"ignore": [
|
|
"dist",
|
|
"build",
|
|
"app/dist",
|
|
"app/static",
|
|
"assets"
|
|
]
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"react"
|
|
]
|
|
},
|
|
"build": {
|
|
"appId": "co.zeit.hyperterm",
|
|
"asar": false,
|
|
"extend-info": "build/Info.plist",
|
|
"linux": {
|
|
"target": [
|
|
"deb",
|
|
"AppImage"
|
|
]
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.developer-tools"
|
|
},
|
|
"publish": {
|
|
"vPrefixedTagName": false
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "concurrently --kill-others \"npm run dev-build\" \"npm run start\"",
|
|
"dev-build": "webpack --watch",
|
|
"lint": "xo",
|
|
"build": "NODE_ENV=production webpack",
|
|
"test": "npm run lint && electron-mocha test/*",
|
|
"start": "electron app",
|
|
"prepublish": "npm test",
|
|
"prepush": "npm test",
|
|
"postinstall": "install-app-deps",
|
|
"pack": "npm run build && build --dir && babel --no-comments --compact --minified --out-file app/dist/bundle.js app/dist/bundle.js",
|
|
"dist": "npm run build && build",
|
|
"release": "npm run build && build --publish=onTagOrDraft"
|
|
}
|
|
}
|