-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wext-manifest-loader",
"version": "2.4.2",
"description": "Webpack loader that lets you specify `manifest.json` properties to appear only in specific browsers.",
"license": "MIT",
"repository": "https://github.com/abhijithvijayan/wext-manifest-loader.git",
"author": {
"name": "abhijithvijayan",
"email": "[email protected]",
"url": "https://abhijithvijayan.in"
},
"engines": {
"node": ">=10.0.0"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/cjs/index.d.ts",
"files": [
"lib"
],
"scripts": {
"dev": "tsc --module esnext --outDir lib/esm --watch",
"dev:cjs": "tsc --module commonjs --outDir lib/cjs --watch",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build:esm": "tsc --module esnext --outDir lib/esm",
"build": "rimraf lib && npm run build:cjs && npm run build:esm",
"pack:list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly": "npm run pack:list",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts"
]
},
"keywords": [
"webextension",
"manifest",
"webpack",
"loader",
"wext",
"chrome",
"firefox",
"edge",
"opera"
],
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^2.7.1"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "^2.8.0",
"@abhijithvijayan/eslint-config-airbnb": "^1.1.0",
"@abhijithvijayan/tsconfig": "^1.3.0",
"@babel/eslint-parser": "^7.23.9",
"@types/jest": "^26.0.23",
"@types/loader-utils": "^2.0.3",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^3.2.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "4.4.4"
}
}