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
32 lines (32 loc) · 862 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 862 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
{
"name": "insert-json",
"version": "1.0.0",
"description": "This script inserts formatted json into an arango 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": {
"arango-tools": "^0.5.0",
"dotenv-safe": "^8.2.0",
"url-slug": "^3.0.1"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"jest-matcher-utils": "^27.0.6",
"prettier": "^2.3.2"
}
}