forked from fuhrmanator/FamixTypeScriptImporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.92 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
{
"name": "ts2famix",
"version": "3.1.0",
"description": "A TypeScript to JSON importer for Moose.",
"main": "dist/ts2famix-cli.js",
"scripts": {
"dev": "ts-node src/ts2famix-cli.ts",
"debug": "node --inspect-brk node_modules/.bin/ts-node",
"build": "tsc",
"check-tests": "tsc --project tsconfig.check-tests.json",
"test": "jest --colors --silent",
"local": "sudo npm i -g && ts2famix",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"doc": "typedoc && touch docs/.gitkeep",
"coverage": "jest --colors --silent --coverage --coverageDirectory=coverage",
"uml": "./src/generate_uml.sh"
},
"bin": {
"ts2famix": "dist/ts2famix-cli-wrapper.js"
},
"keywords": [
"TypeScript",
"famix",
"static analysis",
"moose"
],
"author": "Christopher Fuhrman <christopher.fuhrman@etsmtl.ca>",
"repository": {
"type": "git",
"url": "https://github.com/fuhrmanator/FamixTypeScriptImporter.git"
},
"bugs": {
"url": "https://github.com/fuhrmanator/FamixTypeScriptImporter/issues"
},
"homepage": "https://github.com/fuhrmanator/FamixTypeScriptImporter?tab=readme-ov-file#famixtypescriptimporter",
"nodemonConfig": {
"ignore": [
"dist/*"
]
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.10",
"@types/yargs": "^17.0.33",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jscpd": "^4.0.5",
"tplant": "^3.1.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.0",
"typescript-eslint": "^8.26.1"
},
"dependencies": {
"grapheme-splitter": "^1.0.4",
"lodash": "^4.17.21",
"ts-morph": "^25.0.1",
"tslog": "^4.9.2",
"tsutils": "^3.21.0",
"typescript": "^5.8.2",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.20.4"
}
}