-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
46
47
48
49
50
51
{
"name": "@acodeninja/persist",
"version": "0.0.1",
"description": "A JSON based data modelling and persistence module with alternate storage mechanisms.",
"type": "module",
"scripts": {
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "c8 --experimental-monocart --100 --reporter=console-details ava",
"test:coverage:report": "c8 --experimental-monocart --100 --lcov --reporter=console-details --reporter=v8 ava",
"lint": "eslint ./",
"prepare": "husky"
},
"exports": {
".": "./exports/default.js",
"./engine/*": "./exports/engine/*.js"
},
"repository": {
"url": "https://github.com/acodeninja/persist"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"ajv": "^8.16.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
"slugify": "^1.6.6",
"ulid": "^2.3.0"
},
"optionalDependencies": {
"@aws-sdk/client-s3": "^3.614.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.6.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"husky": "^9.1.1",
"monocart-coverage-reports": "^2.10.2",
"semantic-release": "^24.0.0",
"sinon": "^18.0.0"
}
}