-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
59
60
61
62
63
{
"name": "advanced-post-message",
"version": "0.0.1-beta.1.0",
"description": "Inspired from post robot, this module is designed to provide a simple interface for cross domain communication.",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rimraf ./dist && webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"prepare": "npm run build && husky install",
"lint": "eslint src",
"lint:fix": "eslint --fix",
"prettier": "prettier src --check",
"prettier:fix": "prettier src --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "jest",
"test:watch": "jest --watchAll"
},
"author": {
"name": "Deepak Kharah",
"email": "42672761+Deepak-Kharah@users.noreply.github.com",
"url": "https://www.deepakkharah.com/"
},
"repository": "github:Deepak-Kharah/advanced-post-message",
"bugs": {
"url": "https://github.com/Deepak-Kharah/advanced-post-message/issues"
},
"license": "MIT",
"dependencies": {
"uuid": "^9.0.0",
"zalgo-promise": "^1.0.48"
},
"keywords": [
"post-message",
"post-robot"
],
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/uuid": "^9.0.2",
"@types/zalgo-promise": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}