-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "agent-mart",
"version": "2.0.0",
"description": "A marketplace-first directory of Claude Code plugins, skills, and commands",
"type": "module",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"pipeline": "node scripts/build.js",
"pipeline:dev": "node scripts/etl-visualizer/run.js",
"test": "node --test tests/*.test.js",
"test:unit": "node --test tests/enrich.test.js tests/pipeline.test.js tests/categorizer.test.js",
"test:data": "node --test tests/data-quality.test.js tests/data-flow.test.js tests/data-consistency.test.js",
"test:web": "cd web && npm test -- --run",
"test:all": "npm test && npm run test:web",
"lint": "eslint src tests scripts",
"lint:fix": "eslint src tests scripts --fix",
"prepare": "husky"
},
"dependencies": {
"@octokit/graphql": "^8.0.0",
"@octokit/plugin-throttling": "^9.0.0",
"bottleneck": "^2.19.5",
"dotenv": "^17.3.1",
"js-yaml": "^4.1.0",
"octokit": "^4.0.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"agentation": "^2.2.1",
"eslint": "^10.0.2",
"globals": "^17.3.0",
"highlight.js": "^11.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.0",
"marked": "^17.0.3",
"marked-highlight": "^2.1.0"
},
"author": "Agent Mart Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brsbl/agent-mart.git"
},
"homepage": "https://github.com/brsbl/agent-mart#readme",
"bugs": {
"url": "https://github.com/brsbl/agent-mart/issues"
},
"lint-staged": {
"src/**/*.js": "eslint --fix",
"tests/**/*.js": "eslint --fix",
"scripts/**/*.js": "eslint --fix"
}
}