-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"private": true,
"name": "less-ts-monorepo",
"author": "Patrick Hensley <pathensley@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"build": "lerna run build",
"build:watch": "lerna run build:watch --parallel",
"clean": "lerna run clean",
"clean:full": "lerna run clean:full && rimraf node_modules yarn.lock",
"lint": "lerna run build && lerna run lint",
"reformat": "lerna run reformat",
"release_x": "lerna run clean && lerna run build && lerna publish --force-publish=* --npm-client=npm",
"test": "rimraf ./coverage && jest --coverage --verbose -i --no-cache",
"test:codecov": "rimraf ./coverage && jest --coverage --coverageReporters=lcovonly --verbose -i --no-cache",
"test:watch": "jest --watch"
},
"workspaces": [
"packages/*"
],
"jest": {
"collectCoverageFrom": [
"packages/*/src/**/*.ts",
"!packages/*/src/**/index.ts",
"!packages/*/src/cli/**/*.ts",
"!packages/*/src/**/*.d.ts"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"dependencies": {
"@types/node": "20.6.0",
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"lerna": "^7.2.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "5.2.x"
}
}