-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.34 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
{
"name": "cross-document-messenger",
"version": "1.0.6",
"description": "post and subscribe messages between documents ",
"main": "dist/cross-document-messenger/index.js",
"scripts": {
"lint": "eslint lib/ --ext .ts",
"test": "jest",
"test-coverage": "jest --collect-coverage",
"clean": "rm -rf dist",
"cp:readme": "cp -rf README.md dist/cross-document-messenger",
"cp:license": "cp -rf LICENSE dist/cross-document-messenger",
"cp:pkjson": "cp -rf package.json dist/cross-document-messenger",
"cp:all": "npm run cp:readme && npm run cp:license && npm run && npm run cp:pkjson",
"types-gen": "tsc lib/index.ts --declaration --emitDeclarationOnly --outDir dist/cross-document-messenger",
"build": "npm run clean && npm run types-gen && node ./scripts/build.js && npm run cp:all"
},
"keywords": [
"web-messaging"
],
"repository": {
"type": "git",
"url": "https://github.com/LironHazan/cross-document-messenger.git"
},
"author": "lironh",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"esbuild": "^0.14.23",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}