-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 997 Bytes
/
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
{
"name": "2fa-2-slack",
"version": "1.0.6",
"description": "",
"keywords": [
"twilio",
"slack",
"2fa",
"sms"
],
"repository": {
"type": "git",
"url": "https://github.com/nodecraft/2fa-2-slack"
},
"license": "MIT",
"author": "Nodecraft Inc.",
"main": "app.js",
"scripts": {
"lint": "npm run lint:js && npm run lint:json",
"lint:js": "eslint \"**/*.js\"",
"lint:js:fix": "eslint \"**/*.js\" --fix",
"lint:json": "eslint \"**/*.json\"",
"precommit": "lint",
"start": "NODE_ENV=production node app.js",
"start:dev": "node app.js",
"test": "npm run lint"
},
"dependencies": {
"lodash": "^4.17.21",
"slack-webhook": "^1.0.0",
"spawnpoint": "^2.2.0",
"spawnpoint-express": "^3.0.2"
},
"devDependencies": {
"@nodecraft/eslint-config": "^8.1.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^33.0.1"
},
"engines": {
"node": ">=14"
}
}