-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 958 Bytes
/
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
{
"name": "verbdb",
"version": "0.0.1",
"description": "A lightweight JSON-based memory store using HTTP method verbs",
"engines": {
"node": ">=21.6.0"
},
"exports": {
".": {
"import": "./index.js"
}
},
"type": "module",
"scripts": {
"format": "npx prettier . --write",
"lint": "npx eslint . --config .eslintrc.json --ext .js,.jsx,.ts,.tsx",
"test": "node --test --test-reporter spec --test-reporter-destination=stdout --test-reporter junit --test-reporter-destination=junit.xml --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info"
},
"keywords": [
"database",
"memory",
"http",
"rest",
"json"
],
"author": "Molly Crendraven",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.0.0",
"prettier": "3.3.3"
}
}