-
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) · 2.98 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.98 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-memory",
"version": "3.0.4",
"description": "An in-memory datastore adapter for functional-models",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -Rf ./dist && tsc && cp package.json ./dist && cp README.md ./dist",
"build:watch": "nodemon -e '*' --watch ./src --exec npm run build",
"commit": "cz",
"dist": "npm run build && cd dist && npm publish",
"eslint": "eslint .",
"prettier": "prettier --write .",
"prettier:check": "prettier -c .",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"test:coverage": "nyc npm run test",
"test:features": "TS_NODE_PROJECT=tsconfig.cucumber.json ./node_modules/.bin/cucumber-js --require ./features/step_definitions/steps.ts --require-module ts-node/register"
},
"homepage": "https://github.com/monolithst/functional-models-orm-memory#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/monolithst/functional-models-orm-memory.git"
},
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"include": [
"src/**/!(*.test.*).[tj]s?(x)"
],
"exclude": [
"src/_tests_/**/*.*"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"orm",
"javascript",
"functional-models",
"nodejs"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Mike Cornwell",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/monolithst/functional-models-orm-memory/issues"
},
"devDependencies": {
"@cucumber/cucumber": "^11.2.0",
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/lodash": "^4.17.1",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.2",
"cz-conventional-changelog": "^3.3.0",
"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",
"mocha": "^10.4.0",
"nodemon": "^3.1.9",
"nyc": "^15.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"date-fns": "^3.6.0",
"functional-models": "^3.6.4",
"lodash": "^4.17.21"
}
}