-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 KB
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
{
"dependencies": {
"dotenv": "^16.4.7"
},
"description": "A client library for interacting with the Breadboard API",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.23",
"jest": "^29.7.0",
"semantic-release": "^23.0.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"web-streams-polyfill": "^4.1.0"
},
"keywords": [
"breadboard",
"api",
"client"
],
"license": "UNLICENSED",
"main": "dist/index.js",
"name": "@exadev/breadboard-client",
"packageManager": "yarn@4.7.0",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "npx -y tsx src/index.ts",
"test": "jest --verbose",
"test:coverage": "jest --coverage --coverageReporters=text-summary --coverageReporters=lcov",
"test:coverage:ci": "jest --coverage --coverageThreshold='{\"global\":{\"branches\":70,\"functions\":80,\"lines\":80,\"statements\":80}}'",
"test:coverage:html": "jest --coverage --coverageReporters=html",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:logs": "jest --silent=false",
"test:serial": "jest --runInBand",
"test:utils": "jest src/__tests__/test-utils.test.ts --silent=false --verbose",
"test:watch": "jest --watch"
},
"type": "module",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"version": "1.0.0"
}