-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 904 Bytes
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
{
"name": "project-mapper",
"version": "1.0.0",
"type": "module",
"author": "Joseph Fallon <joseph.t.fallon@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joefallon/project-mapper.git"
},
"homepage": "https://github.com/joefallon/project-mapper#readme",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"bundle": "node scripts/bundle.cjs",
"dist": "npm run build && npm run bundle",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"start": "node dist/cli.js"
},
"devDependencies": {
"@types/node": "^20.4.0",
"@vitest/coverage-v8": "^4.1.4",
"esbuild": "^0.28.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.0",
"vitest": "^4.1.4"
}
}