-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "@extend-chrome/events-rxjs",
"version": "0.12.1",
"description": "RxJS Observables for Chrome API events.",
"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:dev",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:pro": "rollup -c --environment NODE_ENV:production",
"build:types": "tsc -p tsconfig.d.json",
"build:watch": "npm run build:dev -- -w",
"start": "run-p build:watch",
"test": "jest",
"test:all": "jest",
"test:e2e": "jest e2e",
"test:quick": "jest --testPathIgnorePatterns=e2e",
"prepublishOnly": "run-s build:pro build:types"
},
"devDependencies": {
"@types/chrome": "0.0.95",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@types/power-assert": "^1.5.3",
"@types/puppeteer": "^2.0.0",
"@types/sinon-chrome": "^2.2.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chrome-promise": "^3.0.5",
"delay": "^4.3.0",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.13.1",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^2.0.5",
"puppeteer": "^2.1.1",
"rollup": "^1.31.0",
"rollup-plugin-chrome-extension": "^2.1.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.7.0",
"rxjs": "^6.5.4",
"sinon-chrome": "^3.0.1",
"ts-jest": "^25.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"rxjs": "^6.5.4"
}
}