-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.33 KB
/
package.json
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
{
"name": "ts2famix",
"version": "2.0.1",
"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": [],
"author": "",
"nodemonConfig": {
"ignore": [
"dist/*"
]
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@types/yargs": "^17.0.33",
"eslint": "^9.9.0",
"jest": "^29.7.0",
"tplant": "3.1.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5"
},
"dependencies": {
"@types/lodash": "^4.17.7",
"grapheme-splitter": "^1.0.4",
"lodash": "^4.17.21",
"ts-morph": "^23.0.0",
"tslog": "^4.9.2",
"tsutils": "^3.21.0",
"typescript": "^5.5.4",
"yargs": "^17.7.2"
}
}