-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.05 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.05 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
{
"name": "functional-models",
"version": "3.9.5",
"description": "Functional models is ooey gooey framework for building and using awesome models EVERYWHERE.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -Rf ./dist && tsc && cp package.json ./dist && cp README.md ./dist",
"build:docs": "npx typedoc --out ./buildDocs ./src/index.ts",
"build:watch": "nodemon -e '*' --watch ./src --exec npm run build",
"commit": "cz",
"coverage": "nyc --all --reporter=lcov npm test",
"dist": "npm run build && npm run build:docs && cd dist && npm publish && cd ../knowledge-mcp && npm run dist",
"eslint": "eslint . --fix",
"feature-tests": "./node_modules/.bin/cucumber-js -p default",
"mocha": "mocha -r tsx",
"prettier": "prettier --write .",
"prettier:check": "prettier -c .",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monolithst/functional-models.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/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"homepage": "https://monolithst.github.io/functional-models/",
"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.0.1",
"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.7.3"
},
"dependencies": {
"async-lock": "^1.3.0",
"get-random-values": "^1.2.2",
"lodash": "^4.17.23",
"modern-async": "^2.0.4",
"openapi-types": "^12.1.3",
"uuid": "^10.0.0",
"zod": "^4.1.11"
}
}