forked from emedvedev/slackin-extended
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.34 KB
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
72
{
"name": "slackin-extended",
"version": "2.2.2",
"description": "Public Slack organizations made easy",
"repository": "emedvedev/slackin-extended",
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"bin": {
"slackin": "./bin/slackin.js"
},
"files": [
"assets/*.{css,js,svg,png,ico}",
"bin/slackin.js",
"lib/*.js",
"views/*.pug"
],
"dependencies": {
"args": "^5.0.3",
"autoprefixer": "^10.4.14",
"body-parser": "^2.2.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^10.1.0",
"debug": "^4.3.4",
"dotenv": "^17.3.1",
"email-regex": "^6.1.0",
"errorhandler": "^1.5.1",
"express": "^5.2.1",
"hostenv": "^4.9.0",
"micromatch": "^4.0.5",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^11.0.1",
"pug": "^3.0.2",
"resolve-pkg": "^3.0.1",
"sass": "^1.60.0",
"serve-favicon": "^2.5.0",
"socket.io": "^4.8.3",
"superagent": "^10.3.0",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"lockfile-lint": "^5.0.0",
"mocha": "^11.7.5",
"nock": "^14.0.11",
"nodemon": "^3.1.14",
"stylelint": "^16",
"stylelint-config-twbs-bootstrap": "^16.1.0",
"supertest": "^7.2.2",
"xo": "^1.2.3"
},
"engines": {
"node": "24.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": "xo",
"lint:lockfile": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"mocha": "mocha --require ./test/setup --exit",
"test": "xo && 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.js $SLACK_SUBDOMAIN $SLACK_API_TOKEN --coc \\\"$SLACKIN_COC\\\" --channels \\\"$SLACKIN_CHANNELS\\\"",
"prepublishOnly": "npm run build"
}
}