forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"name": "dmarc-report",
"version": "1.0.0",
"description": "Collects ownership information, and collects dmarc summary info, and inserts into arango.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest ",
"test-coverage": "jest --coverage",
"dbg": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache",
"lint": "eslint src",
"prettier": "prettier --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/canada-ca/tracker.git"
},
"author": "nsdeschenes",
"license": "MIT",
"bugs": {
"url": "https://github.com/canada-ca/tracker/issues"
},
"homepage": "https://github.com/canada-ca/tracker#readme",
"dependencies": {
"@azure/cosmos": "^3.14.1",
"arango-tools": "0.5.0",
"arangojs": "^7.5.0",
"dotenv-safe": "^8.2.0",
"isomorphic-fetch": "^3.0.0",
"moment": "^2.29.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "27.2.0",
"jest-fetch-mock": "^3.0.3",
"jest-matcher-utils": "^27.2.0",
"prettier": "^2.4.1",
"supertest": "^6.1.6"
},
"jest": {
"verbose": true
}
}