-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.01 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "japanese-grammar-checker",
"private": true,
"version": "1.0.1",
"description": "A Japanese grammar checker and translation tool",
"type": "module",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build:dev": "cross-env BUILD_ENV=development vite build --config vite.config.extension.js",
"build:prod": "vite build --config vite.config.extension.js",
"build:all": "npm run build:dev && npm run build:prod",
"clean": "rimraf dist",
"clean:build": "npm run clean && npm run build:all",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@eslint/js": "^9.21.0",
"@jest/globals": "^29.7.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"globals": "^15.15.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"rimraf": "^5.0.10",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.1",
"vite": "^6.2.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^../utils/(.*)$": "<rootDir>/js/utils/$1",
"^../modules/(.*)$": "<rootDir>/js/modules/$1",
"^../../js/(.*)$": "<rootDir>/js/$1"
},
"transform": {},
"testMatch": [
"**/tests/**/*.test.js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"moduleDirectories": [
"node_modules",
"js"
],
"transformIgnorePatterns": [
"node_modules/(?!(source-map)/)"
]
},
"dependencies": {
"marked": "^17.0.1"
}
}