hyper/package.json

115 lines
2.7 KiB
JSON
Raw Normal View History

2016-06-30 22:01:04 -08:00
{
2016-07-25 09:22:41 -08:00
"name": "hyperterm",
2016-07-26 10:35:30 -08:00
"version": "0.7.1",
"description": "Web app that runs in the renderer process",
2016-07-08 05:21:54 -08:00
"repository": "zeit/hyperterm",
2016-07-25 14:17:16 -08:00
"author": {
"name": "Guillermo Rauch",
"email": "rauchg@zeit.co"
},
2016-07-27 05:10:41 -08:00
"greenkeeper": {
"emails": false
},
2016-06-30 22:01:04 -08:00
"dependencies": {
"aphrodite-simple": "0.4.1",
2016-07-25 14:16:30 -08:00
"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",
2016-07-07 12:49:21 -08:00
"ms": "0.7.1",
"object-values": "1.0.0",
"php-escape-shell": "1.0.0",
"react": "15.3.0",
2016-07-30 09:12:07 -08:00
"react-addons-pure-render-mixin": "15.3.0",
"react-deep-force-update": "2.0.1",
"react-dom": "15.3.0",
"react-redux": "4.4.5",
"redux": "3.5.2",
"redux-thunk": "2.1.0",
"reselect": "2.5.3",
"seamless-immutable": "6.1.1",
"should": "^11.0.0"
2016-06-30 22:01:04 -08:00
},
"devDependencies": {
2016-07-29 14:57:06 -08:00
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.11.1",
2016-07-28 01:28:04 -08:00
"copy-webpack-plugin": "^3.0.1",
2016-07-29 14:57:06 -08:00
"electron-builder": "^5.19.1",
"electron-prebuilt": "1.3.3",
2016-07-29 14:57:06 -08:00
"eslint": "^3.2.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-react": "^6.0.0",
2016-07-29 14:57:06 -08:00
"eslint-plugin-standard": "^2.0.0",
"husky": "^0.11.6",
"webpack": "^2.1.0-beta.15"
2016-06-30 22:01:04 -08:00
},
"eslintConfig": {
"extends": "standard",
"plugins": [
"react"
],
2016-06-30 22:01:04 -08:00
"rules": {
2016-07-26 15:39:47 -08:00
"yoda": "off",
2016-07-01 13:31:43 -08:00
"semi": [
2016-07-26 15:39:47 -08:00
"error",
2016-07-01 13:31:43 -08:00
"always"
],
2016-07-26 15:39:47 -08:00
"no-unused-vars": "error",
"no-extra-semi": "error",
2016-07-01 13:31:43 -08:00
"semi-spacing": [
2016-07-26 15:39:47 -08:00
"error",
2016-07-01 13:31:43 -08:00
{
"before": false,
"after": true
}
],
2016-07-26 15:39:47 -08:00
"react/jsx-uses-react": "warn",
"react/jsx-uses-vars": "warn"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"mocha": true
2016-06-30 22:01:04 -08:00
}
},
"babel": {
"presets": [
"react"
]
},
"build": {
"appId": "co.zeit.hyperterm",
"app-category-type": "public.app-category.developer-tools",
"asar": false,
2016-07-25 15:41:24 -08:00
"extend-info": "build/Info.plist",
"linux": {
"target": [
"deb",
"AppImage"
]
2016-07-25 15:41:24 -08:00
}
},
2016-06-30 22:01:04 -08:00
"scripts": {
"dev": "webpack --watch",
2016-07-26 15:39:47 -08:00
"lint": "eslint .",
"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",
2016-07-27 18:02:19 -08:00
"pack": "npm run build && build --dir && babel --no-comments --compact --minified --out-file app/dist/bundle.js app/dist/bundle.js",
2016-07-25 08:59:12 -08:00
"dist": "npm run build && build",
"release": "npm run build && build --publish=onTagOrDraft"
2016-06-30 22:01:04 -08:00
}
}