-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "obiter-dictum",
"version": "1.2.1",
"engines": {
"node": "16.x"
},
"description": "A small financial data api tool.",
"repository": {
"type": "git",
"url": "git+https://github.com/Crucible-Standard/obiter-dictum.git"
},
"bugs": {
"url": "https://github.com/Crucible-Standard/obiter-dictum/issues"
},
"homepage": "https://github.com/Crucible-Standard/obiter-dictum#readme",
"contributors": [
"Beau Bouchard <https://github.com/BeauBouchard>"
],
"license": "MIT",
"scripts": {
"cover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov",
"start": "node ./src/app.js",
"test": "node_modules/.bin/mocha tests/. --recursive",
"test:lint": "eslint .",
"test:lint:fix": "eslint . --fix --ignore-pattern polyfills"
},
"dependencies": {
"express": "4.21.1",
"finvizor": "1.2.1",
"helmet": "7.2.0",
"sst": "git+https://github.com/wh-iterabb-it/sst.git"
},
"devDependencies": {
"chai": "4.3.10",
"chai-http": "^4.4.0",
"codecov": "3.8.3",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "10.6.0",
"nyc": "15.1.0",
"prettier": "3.3.3"
}
}