-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.91 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.91 KB
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
64
65
66
67
68
69
70
71
{
"title": "Slice document messenger",
"name": "slice-document-messenger",
"version": "1.0.0",
"description": "Send and receive messages between browser windows, tabs, iframes.",
"repository": {
"type": "git",
"url": "git://github.com/shininglab-code/slice-document-messenger.git"
},
"keywords": [
"javascript",
"localStorage",
"iframe",
"frame",
"browser tab",
"window",
"messenger",
"message",
"transport",
"send",
"receive",
"handle",
"browser",
"document"
],
"main": "index.js",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@comandeer/babel-plugin-banner": "^5.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-comments": "^1.0.4",
"babel-preset-minify": "^0.5.1",
"babelify": "^10.0.0",
"eslint": "^6.8.0",
"grunt": "^1.1.0",
"grunt-babel": "^8.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^22.0.0",
"grunt-strip-code": "^1.0.6"
},
"scripts": {
"test": "grunt test"
},
"author": {
"name": "shininglab",
"email": "shininglab.code@gmail.com",
"url": "https://codecanyon.net/user/shininglab"
},
"license": "MIT",
"dependencies": {},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
]
]
}
}