-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 894 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 894 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
{
"name": "@c11/engine.typescript-compiler",
"version": "0.9.0",
"packageManager": "yarn@4.2.2",
"type": "module",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --config ./jest.config.js --coverageDirectory='./coverage' --collectCoverage --collectCoverageFrom='[\"./src/**/*.{ts,tsx,js,jsx}\"]' --runTestsByPath ./specs/*",
"build": "tsc"
},
"dependencies": {
"@c11/engine.utils": "^4.0.0-alpha.121",
"ts-morph": "23.0.0",
"typescript": "^5.5.3"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@c11/engine.types": "^4.0.0-alpha.121",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"jest": "29.7.0",
"prettier": "^3.3.2",
"ts-jest": "29.2.2"
}
}