-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "iframe.io",
"version": "1.0.3",
"description": "Easy and friendly API to connect and interact between content window and its containing iframe",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": false,
"scripts": {
"compile": "rimraf ./dist && tsc",
"test": "yarn run compile && yarn run test:types && yarn run test:unit",
"test:types": "tsd",
"test:unit": "nyc mocha --require ts-node/register --reporter spec --slow 200 --bail --timeout 10000 test/iframe.io.ts",
"prepack": "yarn run compile"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"expect.js": "^0.3.1",
"mocha": "^9.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"files": [
"dist/",
"src/"
],
"directories": {
"example": "example/",
"test": "test/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/fabrice8/iframe.io"
},
"keywords": [
"realtime",
"iframe",
"browser",
"events",
"io"
],
"author": "Fabrice K.M.E"
}