-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 998 Bytes
/
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
{
"name": "@woovi/node-sdk",
"version": "1.0.1",
"description": "Woovi NodeJS SDK",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "[email protected]:woovibr/woovi-nodejs-sdk.git",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.7.2",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"commitizen": "^4.3.0",
"jest": "^29.7.0",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.4.5"
},
"scripts": {
"commit": "cz",
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"lint": "biome lint ./src ./tests",
"format": "biome check ./src ./tests --apply",
"prepare": "yarn build"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pre-commit": {
"run": "lint"
}
}