-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1007 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
{
"name": "cts-slack-post-jobs",
"version": "1.0.0",
"description": "A script to post job postings to the CTS Slack",
"main": "src/index.js",
"engines": {
"node": ">= 10"
},
"scripts": {
"post:jobs": "./scripts/post-jobs.bash",
"lint": "./scripts/lint.bash"
},
"author": "Tim Oram <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/mitmaro/eslint-config-mitmaro.git"
},
"license": "ISC",
"dependencies": {
"@mitmaro/build-scripts": "^0.1.5",
"dotenv": "^8.0.0",
"fs-extra": "^8.0.1",
"js-yaml": "^3.13.1",
"moment": "^2.24.0",
"node-fetch": "^2.6.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-mitmaro": "^5.0.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0"
}
}