-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "docuwrite",
"version": "0.1.0",
"description": "Extended document processing tools built on docuwrite-base",
"main": "dist/cli/typescript/commands/docuwrite-hello.js",
"bin": {
"docuwrite-hello": "./dist/cli/typescript/commands/docuwrite-hello.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.ts'",
"clean": "rm -rf dist",
"start": "node dist/cli/typescript/commands/docuwrite-hello.js"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
],
"moduleDirectories": [
"node_modules",
"src"
]
}
}