-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "your-sincere-tab-keeper",
"version": "1.0.2",
"description": "A Chrome extension that limits open tabs with playful maze games",
"main": "src/background.js",
"type": "module",
"scripts": {
"build": "npm run sync-version && vite build && node scripts/build.js",
"build:clean": "rm -rf dist && npm run build",
"pack": "node scripts/package.js",
"pack:clean": "rm -rf dist packages && npm run pack",
"zip": "cd dist && zip -r ../extension.zip . -x '*.DS_Store' '*.git*'",
"validate": "node scripts/validate.js",
"sync-version": "node scripts/sync-version.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"chrome-extension",
"tab-management",
"productivity",
"maze-game"
],
"author": "James Tien",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@eslint/js": "^9.34.0",
"@jest/globals": "^29.7.0",
"babel-jest": "^30.0.5",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-promise": "^7.2.1",
"jest": "^29.7.0",
"terser": "^5.43.1",
"vite": "^5.0.0"
},
"jest": {
"testMatch": [
"**/*.test.js"
],
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "babel-jest"
},
"extensionsToTreatAsEsm": [],
"moduleFileExtensions": [
"js",
"json"
]
}
}