-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.68 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@reactionable/cli",
"version": "1.2.15",
"description": "Reactionable cli",
"main": "dist/index.js",
"bin": {
"reactionable": "./bin/reactionable"
},
"scripts": {
"start": "yarn link && tsc --watch",
"prebuild": "rimraf ./dist",
"build": "tsc",
"prebuild:doc": "rimraf -rf build/docs",
"build:doc": "typedoc",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "jest",
"test:ci": "yarn test --coverage",
"prepare": "ts-dev-tools install",
"format": "prettier --cache --write '**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactionable/reactionable-cli.git"
},
"keywords": [
"reactionable",
"cli",
"tools"
],
"author": "ESCEMI <contact@escemi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactionable/reactionable-cli/issues"
},
"homepage": "https://reactionable.github.io/reactionable-cli",
"dependencies": {
"@iarna/toml": "^2.2.5",
"clipanion": "^4.0.0-rc.2",
"colorette": "^2.0.20",
"deepmerge": "^4.3.1",
"diff": "^7.0.0",
"eta": "^3.1.1",
"figlet": "^1.7.0",
"handlebars": "^4.7.8",
"inversify": "^6.0.2",
"js-ini": "^1.6.0",
"parse-github-url": "^1.0.2",
"pluralize": "^8.0.0",
"prompts": "^2.4.2",
"reflect-metadata": "^0.2.1",
"shelljs": "^0.8.5",
"typescript": "^5.1.6"
},
"devDependencies": {
"@ts-dev-tools/core": "^1.6.1",
"@types/diff": "^6.0.0",
"@types/figlet": "^1.5.8",
"@types/mock-fs": "^4.13.4",
"@types/parse-github-url": "^1.0.3",
"@types/prompts": "^2.4.9",
"@types/shelljs": "^0.8.15",
"@types/tmp": "^0.2.6",
"fs-extra": "^11.2.0",
"jest-serializer-html": "^7.1.0",
"mock-fs": "^5.2.0",
"mock-spawn": "^0.2.6",
"rimraf": "^6.0.1",
"tmp": "^0.2.1",
"typedoc": "^0.27.1"
},
"prettier": {
"semi": true,
"printWidth": 100,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/"
],
"setupFiles": [
"./src/container.ts"
],
"transform": {
"\\.template$": "<rootDir>/__tests__/template-preprocessor.js"
},
"snapshotSerializers": [
"jest-serializer-html"
]
},
"tsDevTools": {
"version": "20240617094000-config-nx-scopes"
}
}