-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.83 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
{
"name": "@extend-chrome/menus",
"version": "0.0.3",
"description": "A powerful and flexible alternative to `chrome.contextMenus` for Chrome extension development",
"repository": "github:extend-chrome/menus",
"license": "MIT",
"author": "Jack and Amy Steam <[email protected]>",
"main": "lib/index-cjs.js",
"module": "lib/index-esm.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"scripts": {
"build": "run-p build:pro build:types build:copy",
"build:copy": "copyfiles -u 1 src/*.d.ts types",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:pro": "rollup -c --environment NODE_ENV:production",
"build:types": "tsc -p tsconfig.d.json",
"build:types:watch": "tsc -w -p tsconfig.d.json",
"build:watch": "npm run build:dev -- -w",
"prepublishOnly": "npm run build",
"start": "run-p build:watch",
"test": "jest",
"test:e2e": "jest e2e",
"test:quick": "jest --testPathIgnorePatterns=e2e"
},
"dependencies": {
"@extend-chrome/events-rxjs": "^0.12.1",
"@extend-chrome/messages": "^1.1.1",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@types/chrome": "0.0.91",
"@types/jest": "^24.0.19",
"@types/node": "^12.11.5",
"chrome-promise": "^3.0.5",
"copyfiles": "^2.3.0",
"delay": "^4.3.0",
"eslint": "^6.5.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rollup": "^1.25.2",
"rollup-plugin-bundle-imports": "^1.4.5",
"rollup-plugin-chrome-extension": "^3.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-empty-dir": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-zip": "^0.5.2",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"typescript": "^3.6.4"
}
}