-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.87 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.87 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
{
"name": "functional-models-openapi",
"version": "3.0.2",
"description": "A library for Functional models for working with Openapi.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"mocha": "mocha -r tsx",
"test": "mocha -r tsx --extensions ts,tsx 'test/**/*.{ts,tsx}'",
"test:coverage": "c8 --all --reporter cobertura --reporter text --reporter lcov --reporter html npm run test",
"test:watch": "nodemon -e '*' --watch test --watch src --exec npm run test:coverage",
"commit": "cz",
"feature-tests": "./node_modules/.bin/cucumber-js -p default",
"coverage": "nyc --all --reporter=lcov npm test",
"build": "rm -Rf ./dist && tsc -p ./tsconfig.json && cp package.json ./dist && cp README.md ./dist",
"build:watch": "nodemon -e '*' --watch ./src --exec npm run build",
"prettier": "prettier --write .",
"prettier:check": "prettier -c .",
"eslint": "eslint . --fix",
"dist": "npm run build && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monolithst/functional-models-openapi.git"
},
"keywords": [
"framework",
"models",
"orm",
"modeling",
"functional"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Mike Cornwell",
"license": "GPLV3",
"bugs": {
"url": "https://github.com/monolithst/functional-models-openapi/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"homepage": "https://github.com/monolithst/functional-models-openapi#readme",
"devDependencies": {
"@cucumber/cucumber": "^11.0.0",
"@date-fns/utc": "^1.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/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",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^7.1.1",
"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",
"esprima": "^4.0.1",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"nodemon": "^3.1.0",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"proxyquire": "^2.1.3",
"sinon": "^18.0.1",
"ts-node": "^9.1.1",
"tsx": "^4.19.2",
"typescript": "5.3.3"
},
"dependencies": {
"functional-models": "^3.5.0",
"lodash": "^4.17.21",
"modern-async": "^2.0.4",
"zod": "4.1.11"
}
}