-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 2.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tyrionl",
"version": "1.5.2",
"description": "technical debt collector tool",
"repository": {
"type": "git",
"url": "https://github.com/theodo/tyrion.git"
},
"main": "./lib/index.js",
"bin": {
"tyrion": "./lib/index.js"
},
"scripts": {
"tsc": "tsc",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"exec": "ts-node src/index.ts -e 360 -c",
"build": "tsc -p . && cp -r src/template/ lib/template/",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:build": "npm run build && sudo npm i -g && tyrion",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"push": "npm run build && npm publish"
},
"author": "Maxime Thoonsen",
"license": "ISC",
"jest": {
"setupFiles": [
"./src/config.ts"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/src/__tests__/.*|\\.(test))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {
"ts-jest": {
"compiler": "ttypescript"
}
}
},
"dependencies": {
"chalk": "^2.4.2",
"clear": "^0.1.0",
"cli-table": "^0.3.1",
"colors": "^1.4.0",
"commander": "^2.20.3",
"figlet": "^1.5.0",
"glob": "^7.1.6",
"lodash": "^4.17.11",
"nodegit": "^0.27.0",
"open": "^6.4.0",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/cli-table": "^0.3.0",
"@types/figlet": "^1.2.0",
"@types/glob": "^7.1.3",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.158",
"@types/node": "^12.12.53",
"@types/nodegit": "^0.24.13",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^24.9.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-ts-auto-mock": "^1.0.11",
"nodemon": "^1.19.4",
"prettier": "^2.1.2",
"ts-auto-mock": "^2.6.5",
"ts-jest": "^26.4.3",
"ts-node": "^8.10.2",
"ttypescript": "^1.5.12",
"typescript": "^3.9.7"
},
"directories": {
"lib": "lib"
}
}