-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 785 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 785 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
28
29
30
31
32
{
"name": "cbj",
"version": "0.1.15",
"description": "",
"main": "dist/index.js",
"bin": {
"cbj": "./dist/index.js"
},
"scripts": {
"dev": "ts-node packages/core/index.ts",
"test": "mocha -r ts-node/register -r tsconfig-paths/register 'packages/core/**/*.spec.ts'",
"build": "npm run test && tsc",
"release-patch": "pnpm version patch && pnpm run build && npm publish"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^9.1.1",
"@types/node": "^20.11.30",
"chai": "^4.4.1",
"execa": "^8.0.1",
"mocha": "^10.3.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3"
},
"dependencies": {
"ignore": "^5.3.1"
}
}