Permalink
Cannot retrieve contributors at this time
All your code in one place
GitHub makes it easy to scale back on context switching. Read rendered documentation, see the history of any file, and collaborate with contributors on projects across GitHub.
Sign up for free See pricing for teams and enterprises
Fetching contributors…

{ | |
"name": "slackin-extended", | |
"version": "1.1.11", | |
"description": "Public Slack organizations made easy", | |
"repository": "emedvedev/slackin-extended", | |
"license": "MIT", | |
"main": "./lib/index.js", | |
"bin": { | |
"slackin": "./bin/slackin" | |
}, | |
"files": [ | |
"assets/*.{css,js,svg,png,ico}", | |
"bin/slackin", | |
"lib/*.js", | |
"views/*.pug" | |
], | |
"dependencies": { | |
"args": "^5.0.1", | |
"autoprefixer": "^9.7.2", | |
"body-parser": "^1.19.0", | |
"compression": "^1.7.4", | |
"cors": "^2.8.5", | |
"cross-env": "^6.0.3", | |
"debug": "^4.1.1", | |
"dotenv": "^8.2.0", | |
"email-regex": "^4.0.0", | |
"express": "^4.17.1", | |
"hostenv": "^2.0.0", | |
"micromatch": "^4.0.2", | |
"npm-run-all": "^4.1.5", | |
"postcss-cli": "^6.1.3", | |
"pug": "^2.0.4", | |
"sass": "^1.23.7", | |
"serve-favicon": "^2.5.0", | |
"socket.io": "^2.3.0", | |
"superagent": "^3.8.3", | |
"tinycolor2": "^1.4.1" | |
}, | |
"devDependencies": { | |
"eslint": "^6.6.0", | |
"eslint-config-airbnb-base": "^14.0.0", | |
"eslint-plugin-import": "^2.18.2", | |
"mocha": "^6.2.2", | |
"nock": "^11.7.0", | |
"nodemon": "^2.0.0", | |
"stylelint": "^12.0.0", | |
"stylelint-config-twbs-bootstrap": "^1.0.0", | |
"supertest": "^4.0.2" | |
}, | |
"engines": { | |
"node": "10.x" | |
}, | |
"scripts": { | |
"dev": "nodemon --watch assets/ --watch lib/ --watch scss/ --ext js,scss,svg --exec \"npm-run-all build start\"", | |
"lint": "npm-run-all --parallel --continue-on-error lint:*", | |
"lint:css": "stylelint \"{assets,scss}/*.{css,scss}\"", | |
"lint:js": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .", | |
"mocha": "mocha --require ./test/setup --exit", | |
"test": "npm-run-all build lint mocha", | |
"build": "npm-run-all build:*", | |
"build:sass": "sass --style compressed --no-source-map --no-error-css scss/:assets/", | |
"build:prefix": "postcss --use autoprefixer --no-map --replace \"assets/*.css\" \"!assets/iframe-button.css\"", | |
"now-build": "npm run build && cp node_modules/superagent/superagent.js assets", | |
"start": "cross-env-shell node ./bin/slackin $SLACK_SUBDOMAIN $SLACK_API_TOKEN --coc \\\"$SLACKIN_COC\\\" --channels \\\"$SLACKIN_CHANNELS\\\"", | |
"prepublishOnly": "npm run build" | |
}, | |
"eslintConfig": { | |
"root": true, | |
"extends": "airbnb-base" | |
} | |
} |