Remove duplicates from package files

This commit is contained in:
Leo Lamprecht 2016-10-17 10:29:12 +02:00
parent 883ff09821
commit a639965669
No known key found for this signature in database
GPG key ID: C251EE4DA454117B
2 changed files with 60 additions and 63 deletions

View file

@ -1,6 +1,7 @@
{ {
"name": "hyper", "name": "hyper",
"productName": "Hyper", "productName": "Hyper",
"description": "HTML/JS/CSS Terminal",
"version": "0.8.2", "version": "0.8.2",
"license": "MIT", "license": "MIT",
"author": { "author": {
@ -8,7 +9,7 @@
"email": "team@zeit.co" "email": "team@zeit.co"
}, },
"repository": "zeit/hyper", "repository": "zeit/hyper",
"description": "HTML/JS/CSS Terminal", "xo": false,
"dependencies": { "dependencies": {
"child_pty": "3.0.1", "child_pty": "3.0.1",
"color": "0.11.3", "color": "0.11.3",
@ -25,6 +26,5 @@
"semver": "5.3.0", "semver": "5.3.0",
"shell-env": "0.2.0", "shell-env": "0.2.0",
"uuid": "2.0.2" "uuid": "2.0.2"
}, }
"xo": false
} }

View file

@ -1,55 +1,15 @@
{ {
"name": "hyper",
"version": "0.8.2",
"description": "Web app that runs in the renderer process",
"repository": "zeit/hyper", "repository": "zeit/hyper",
"license": "MIT", "scripts": {
"author": { "start": "concurrently --kill-others --raw \"npm run dev\" \"npm run app\"",
"name": "Zeit, Inc.", "app": "electron app",
"email": "team@zeit.co" "dev": "webpack -w",
}, "build": "NODE_ENV=production webpack",
"greenkeeper": { "test": "npm run dist && xo && ava",
"emails": false "prepush": "npm test",
}, "postinstall": "install-app-deps",
"dependencies": { "pack": "npm run build && build --dir && babel --no-comments --compact --minified --out-file app/dist/bundle.js app/dist/bundle.js",
"aphrodite-simple": "0.4.1", "dist": "npm run build && build"
"color": "0.11.3",
"hterm-umdjs": "1.1.3",
"json-loader": "0.5.4",
"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.3",
"semver": "5.3.0",
"uuid": "2.0.2"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.11.1",
"concurrently": "^3.0.0",
"copy-webpack-plugin": "^3.0.1",
"electron": "1.4.0",
"electron-builder": "^7.11.4",
"electron-devtools-installer": "^2.0.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.3.0",
"husky": "^0.11.6",
"redux-logger": "^2.6.1",
"spectron": "^3.4.0",
"webpack": "^2.1.0-beta.15",
"xo": "^0.17.0"
}, },
"xo": { "xo": {
"extends": "xo-react", "extends": "xo-react",
@ -97,15 +57,52 @@
"category": "public.app-category.developer-tools" "category": "public.app-category.developer-tools"
} }
}, },
"scripts": { "license": "MIT",
"start": "concurrently --kill-others --raw \"npm run dev\" \"npm run app\"", "author": {
"app": "electron app", "name": "Zeit, Inc.",
"dev": "webpack -w", "email": "team@zeit.co"
"build": "NODE_ENV=production webpack", },
"test": "npm run dist && xo && ava", "greenkeeper": {
"prepush": "npm test", "emails": false
"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", "dependencies": {
"dist": "npm run build && build" "aphrodite-simple": "0.4.1",
"color": "0.11.3",
"hterm-umdjs": "1.1.3",
"json-loader": "0.5.4",
"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.3",
"semver": "5.3.0",
"uuid": "2.0.2"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.11.1",
"concurrently": "^3.0.0",
"copy-webpack-plugin": "^3.0.1",
"electron": "1.4.0",
"electron-builder": "^7.11.4",
"electron-devtools-installer": "^2.0.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.3.0",
"husky": "^0.11.6",
"redux-logger": "^2.6.1",
"spectron": "^3.4.0",
"webpack": "^2.1.0-beta.15",
"xo": "^0.17.0"
} }
} }