This repository has been archived by the owner on Dec 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "security-badger",
"version": "0.0.1",
"description": "GitHub Action that posts to Slack with relevant GitHub security alerts",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && ncc build ./src/index.js",
"start": "node ./src/index.js",
"test": "jest --watch",
"test-ci": "jest --ci --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkpost/security-badger.git"
},
"author": "Nick Lemmon",
"license": "MIT",
"homepage": "https://github.com/sparkpost/security-badger#readme",
"dependencies": {
"axios": "^0.21.1",
"date-fns": "^2.21.1",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^27.0.5",
"lint-staged": "^10.3.0",
"mockdate": "^3.0.5",
"prettier": "2.1.1"
},
"devDependenciesComments": {
"@types/jest": "Required to enable intellisense in VSCode for global Jest methods"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.{js,css,md}": "prettier --write"
}
}