-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "browser-extension-url-match",
"version": "1.2.0",
"description": "Browser extension URL pattern matching",
"main": "dist/index.js",
"scripts": {
"test": "jest --watchAll --verbose=false",
"build": "tsc && babel --plugins @babel/plugin-transform-modules-commonjs dist/*.js -d dist",
"prepare": "jest && rm -rf dist && npm run build"
},
"types": "dist/index.d.ts",
"author": "https://github.com/lionel-rowe",
"license": "MIT",
"repository": {
"url": "https://github.com/lionel-rowe/browser-extension-url-match"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"dependencies": {
"fancy-regex": "^0.5.4"
},
"keywords": [
"URL",
"URI",
"pattern",
"match",
"Chrome",
"Firefox",
"extension",
"WebExtensions"
]
}