-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 950 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 950 Bytes
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": "domain-loader",
"version": "1.0.0",
"description": "Inserts organizations and their domains into the Tracker database.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint src",
"prettier": "prettier --write \"**/*.js\"",
"test": "jest",
"test-coverage": "jest --coverage"
},
"author": "nsdeschenes",
"license": "MIT",
"dependencies": {
"arangojs": "^10.2.2",
"dotenv-safe": "^8.2.0",
"url-slug": "^3.0.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"arango-tools": "^0.5.0",
"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.5.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^30.3.0",
"jest-matcher-utils": "^27.2.4",
"prettier": "^2.4.1",
"typescript": "^4.6.4"
}
}