forked from emedvedev/slackin-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "slackin-extended",
"version": "2.0.0",
"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.4",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"email-regex": "^4.0.0",
"express": "^4.17.1",
"hostenv": "^2.3.0",
"micromatch": "^4.0.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"pug": "^2.0.4",
"sass": "^1.25.0",
"serve-favicon": "^2.5.0",
"socket.io": "^2.3.0",
"superagent": "^3.8.3",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"mocha": "^7.0.1",
"nock": "^11.7.2",
"nodemon": "^2.0.2",
"stylelint": "^13.0.0",
"stylelint-config-twbs-bootstrap": "^2.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"
}
}