-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 2.42 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 2.42 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
{
"name": "flowmcp-server",
"version": "1.6.0",
"main": "./src/index.mjs",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config=tests/unit/jest.config.mjs",
"test:coverage:src": "c8 --reporter=lcov --reporter=text --reports-dir=tests/unit/coverage --include='src/**/*.mjs' --exclude='src/**/*.test.mjs' --exclude='src/**/*.spec.mjs' npm run test",
"test:parameters": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config=tests/unit/jest.config.mjs parameters",
"test:localserver": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config=tests/unit/jest.config.mjs LocalServer",
"test:remoteserver": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config=tests/unit/jest.config.mjs RemoteServer",
"test:deploy": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config=tests/unit/jest.config.mjs Deploy",
"test:namespace": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config=tests/unit/jest.config.mjs NamespaceFiltering",
"start:local": "node ./tests/deploy/deploy-single-simple.mjs --includeNamespaces= --excludeNamespaces= --activateTags= --envType=file --envPath=.example.env --serverType=local --bearerToken=1234 --port=8080 --rootUrl=http://localhost --silent=false --transportProtocols=sse --routePath=/flowmcp",
"start:remote": "node ./tests/deploy/deploy-single-simple.mjs --includeNamespaces= --excludeNamespaces= --activateTags= --envType=file --envPath=.example.env --serverType=remote --bearerToken=1234 --port=8080 --rootUrl=http://localhost --silent=false --transportProtocols=sse --routePath=/flowmcp",
"start:digitalocean": "node ./tests/deploy/deploy-single-simple.mjs --includeNamespaces= --excludeNamespaces= --activateTags= --envType=file --envPath=.example.env --serverType=remote --bearerToken=1234 --port=8080 --rootUrl=http://localhost --silent=false --transportProtocols=statelessStreamable --routePath=/flowmcp",
"inspector": "npx @modelcontextprotocol/inspector node tests/3-simpler-plus-see.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"flowmcp": "github:flowmcp/flowmcp#91ccaf8dc7b61b5df3cfa780699cbf4973cd3cbd"
},
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@modelcontextprotocol/inspector": "^0.14.3",
"babel-jest": "^30.0.2",
"c8": "^10.1.3",
"jest": "^30.0.3"
}
}