-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.6 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
{
"name": "uno-js",
"version": "3.127.1",
"description": "JS/TS common used functions, zero dependencies",
"main": "dist/index.js",
"scripts": {
"test": "jest --runInBand",
"cest": "jest --collectCoverage --runInBand",
"lint": "pnpm biome check ./src",
"lint:fix": "pnpm biome check --write ./src",
"lint:test": "pnpm biome check --write ./test",
"build": "tsc",
"watch": "tsc -w",
"preparepackage": "npm run build && npm run copypackage",
"copypackage": "npx shx cp package.json dist"
},
"jest": {
"coverageReporters": [
"lcov",
"text"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"diagnostics": false,
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
],
"coverageThreshold": {
"global": {
"branches": 74,
"functions": 85,
"lines": 90,
"statements": -80
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/unosquare/uno-js.git"
},
"keywords": [
"Javascript",
"functions",
"JS",
"csv",
"typescript"
],
"author": "Unosquare",
"license": "MIT",
"bugs": {
"url": "https://github.com/unosquare/uno-js/issues"
},
"homepage": "https://github.com/unosquare/uno-js#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}