-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.09 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "functional-models-orm-redis",
"version": "1.0.1",
"description": "A functional models orm database using Redis.",
"main": "index.js",
"type": "module",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -Rf ./dist && tsgo -p ./tsconfig.json && cp package.json ./dist && cp ./README.md ./dist",
"build:watch": "nodemon -e '*' --watch ./src --exec \"npm run build || exit 1\"",
"commit": "cz",
"dist": "npm run build && cd dist && npm publish",
"eslint": "eslint . --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier -c .",
"test": "mocha -r tsx --extensions ts,tsx 'test/**/*.{ts,tsx}'",
"test:features": "NODE_OPTIONS='--import tsx' ./node_modules/.bin/cucumber-js --force-exit",
"test:coverage": "c8 --all --reporter cobertura --reporter text --reporter lcov --reporter html npm run test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/monolithst/functional-models-orm-redis.git"
},
"keywords": [
"framework",
"models",
"orm",
"redis",
"modeling",
"functional"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Mike Cornwell",
"license": "GPLV3",
"bugs": {
"url": "https://github.com/monolithst/functional-models-orm-redis/issues"
},
"homepage": "https://github.com/monolithst/functional-models-orm-redis#readme",
"dependencies": {
"@types/lodash": "^4.17.24",
"functional-models": "^3.11.0",
"functional-models-orm-memory": "^3.0.7",
"lodash": "^4.18.1",
"modern-async": "^2.0.4",
"redis": "^6.0.0"
},
"devDependencies": {
"@cucumber/cucumber": "^13.0.0",
"@date-fns/utc": "^1.2.0",
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/async-lock": "^1.1.3",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "^4.14.176",
"@types/mocha": "^9.1.1",
"@types/node": "^22.10.7",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@typescript/native-preview": "^7.0.0-dev.20260604.1",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.0.1",
"esbuild": "^0.25.12",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-functional": "~7.1.0",
"eslint-plugin-import": "^2.31.0",
"esprima": "^4.0.1",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"nodemon": "^3.1.0",
"prettier": "^3.4.2",
"proxyquire": "^2.1.3",
"sinon": "^18.0.1",
"testcontainers": "^12.0.1",
"ts-node": "^9.1.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.5",
"lodash": "^4.18.1",
"tmp": "^0.2.7"
}
}