-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "talker.js",
"version": "1.1.1",
"description": "A tiny, promise-based library for cross-origin communication between frames and windows.",
"main": "dist/index.js",
"browser": "dist/umd/talker.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tslint src/"
},
"repository": {
"type": "git",
"url": "git://github.com/secondstreet/talker.js.git"
},
"keywords": [
"iframe",
"postMessage",
"cross-domain",
"cross-origin",
"promise"
],
"author": "Second Street <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/secondstreet/talker.js/issues"
},
"homepage": "https://github.com/secondstreet/talker.js",
"lint-staged": {
"linters": {
"src/**/*.ts": [
"prettier --write",
"git add"
],
"**/*.json": [
"prettier --write",
"git add"
]
}
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.18.2",
"ts-loader": "^5.3.1",
"tslint": "~5.7.0",
"tslint-config-prettier": "~1.9.0",
"typescript": "~3.1.2",
"webpack": "^5.9.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"es6-promise": "~4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}