-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "@extend-chrome/notify",
"version": "2.0.0",
"description": "Create notifications in your Chrome extension with ease.",
"repository": "github:extend-chrome/notify",
"license": "MIT",
"author": "Jack and Amy Steam <jacksteamdev@gmail.com>",
"main": "lib/index-cjs.js",
"module": "lib/index-esm.js",
"types": "index.d.ts",
"files": [
"lib",
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/jest.setup.js"
],
"transform": {
".(js|jsx|ts|tsx)": "@sucrase/jest-plugin"
}
},
"dependencies": {
"@extend-chrome/events-rxjs": "^0.12.1",
"chrome-promise": "^3.0.5",
"prettier": "^2.1.2",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^6.1.0",
"@sucrase/jest-plugin": "^2.0.0",
"@types/chrome": "0.0.81",
"@types/firefox-webext-browser": "^78.0.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"jest": "^24.8.0",
"rollup": "^2.33.0",
"sinon-chrome": "^2.3.2",
"sucrase": "^3.10.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}