-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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": "cross-context-events",
"version": "1.0.0",
"description": "A lightweight event library for cross context messaging and events synchronization",
"main": "dist/cross-context-events.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"scripts": {
"test": "rm -rf dist && webpack -c webpack.test.js && mochapack --quiet --require tests/setup.js --webpack-config webpack.test.js tests/*.spec.ts --reporter nyan",
"test:watch": "mochapack --require tests/setup.js --webpack-config webpack.test.js tests/*.spec.ts --watch",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "yarn lint --fix",
"prepack": "rm -rf dist && yarn lint:fix && yarn test && webpack -c webpack.config.js && tsc"
},
"files": [
"dist/",
"src/"
],
"repository": "github:mia1024/cross-context-events",
"keywords": [
"event",
"events",
"context",
"cross-context",
"typescript",
"es6",
"node",
"worker",
"window",
"iframe",
"ipc",
"runtime",
"electron"
],
"author": "Mia Celeste",
"license": "MIT",
"bugs": {
"url": "https://github.com/mia1024/cross-context-events/issues"
},
"homepage": "https://github.com/mia1024/cross-context-events",
"devDependencies": {
"@types/chrome": "^0.0.154",
"@types/mocha": "8",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"expect": "^27.0.6",
"global-jsdom": "^8.1.0",
"jsdom": "^16.6.0",
"jsdom-worker": "^0.2.1",
"mocha": "8",
"mochapack": "^2.1.2",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
}
}