generated from ryohidaka/npm-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
{
"name": "chrome-alarms",
"version": "1.2.0",
"description": "Helper for chrome.alarms API.",
"keywords": [
"chrome",
"extension",
"extensions",
"ext",
"alarm"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "husky install",
"test": "npx jest",
"format": "npx prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryohidaka/chrome-alarms.git"
},
"author": "ryohidaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryohidaka/chrome-alarms/issues"
},
"homepage": "https://github.com/ryohidaka/chrome-alarms#readme",
"devDependencies": {
"@types/chrome": "^0.0.280",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"chrome": "^0.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}