-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "@trifoia/sdk-slack-message",
"version": "1.2.1",
"description": "SDK for connection to a proprietary automatic slack messaging endpoint",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --test",
"test-quick": "mocha --recursive --quick --test",
"test-debug": "node --inspect-brk node_modules/.bin/mocha --recursive --test",
"test-debug-quick": "node --inspect-brk node_modules/.bin/mocha --recursive --quick --test",
"lint": "eslint . --fix",
"lint-no-fix": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trifoia/nodejs-template.git"
},
"author": "Trifoia (https://trifoia.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Trifoia/nodejs-template/issues"
},
"homepage": "https://github.com/Trifoia/nodejs-template#readme",
"devDependencies": {
"eslint": "^7.12.1",
"mocha": "^8.2.1"
},
"dependencies": {
"phin": "^3.5.1"
},
"directories": {
"lib": "lib",
"test": "test"
}
}