Browse Source

add contributors

pull/126/head
butlerx 6 years ago
parent
commit
5326182168
No known key found for this signature in database GPG Key ID: B37CA765BAA89170
  1. 40
      package.json

40
package.json

@ -1,8 +1,7 @@
{ {
"name": "wetty.js", "name": "wetty.js",
"version": "1.0.3", "version": "1.0.3",
"description": "description": "WeTTY = Web + TTY. Terminal access in browser over http/https",
"WeTTY = Web + TTY. Terminal access in browser over http/https",
"homepage": "https://github.com/butlerx/wetty", "homepage": "https://github.com/butlerx/wetty",
"repository": { "repository": {
"type": "git", "type": "git",
@ -18,14 +17,19 @@
"lint": "eslint --ext .js,.mjs .", "lint": "eslint --ext .js,.mjs .",
"build": "webpack", "build": "webpack",
"start": "node .", "start": "node .",
"dev": "dev": "NODE_ENV=development concurrently --kill-others --success first \"webpack --watch\" \"nodemon .\"",
"NODE_ENV=development concurrently --kill-others --success first \"webpack --watch\" \"nodemon .\"",
"prepublishOnly": "yarn build", "prepublishOnly": "yarn build",
"precommit": "lint-staged" "precommit": "lint-staged"
}, },
"lint-staged": { "lint-staged": {
"*.{js,mjs}": ["eslint --fix", "git add"], "*.{js,mjs}": [
"*.{json,scss,md}": ["prettier --write", "git add"] "eslint --fix",
"git add"
],
"*.{json,scss,md}": [
"prettier --write",
"git add"
]
}, },
"bin": { "bin": {
"wetty": "./index.js" "wetty": "./index.js"
@ -34,7 +38,11 @@
"node": ">=6.9" "node": ">=6.9"
}, },
"nodemonConfig": { "nodemonConfig": {
"ignore": ["dist/*", "src/*", "*.json"] "ignore": [
"dist/*",
"src/*",
"*.json"
]
}, },
"preferGlobal": "true", "preferGlobal": "true",
"dependencies": { "dependencies": {
@ -76,5 +84,21 @@
"style-loader": "^0.19.1", "style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6", "uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0" "webpack": "^3.10.0"
} },
"contributors": [
"Krishna Srinivas <krishna.srinivas@gmail.com>",
"Boyan Rabchev <boyan@rabchev.com>",
"Luca Milanesio <luca.milanesio@gmail.com>",
"Antonio Calatrava <antonio@antoniocalatrava.com>",
"Strubbl <github@linux4tw.de>",
"Jarrett Gilliam <jarrettgilliam@gmail.com>",
"Nathan LeClaire <nathan.leclaire@docker.com>",
"mirtouf <mirtouf@gmail.com>",
"nosemeocurrenada <nosemeocurrenada93@gmail.com>",
"Andreas Kloeckner <inform@tiker.net>",
"Imuli <i@imu.li>",
"James Turnbull <james@lovedthanlost.net>",
"Neale Pickett <neale@woozle.org>",
"Robert <robert@n5qm.com>"
]
} }

Loading…
Cancel
Save