-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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": "iframe-tunnel",
"version": "1.0.6",
"description": "Easily communicate through an IFrame with an event emitter style interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"browser-build": "./node_modules/.bin/webpack --config ./webpack.config.js",
"demo": "./examples/./refresh.sh",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"lint-fix": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexeveritt/tunneljs.git"
},
"keywords": [],
"author": "Alex Everitt",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexeveritt/tunneljs/issues"
},
"homepage": "https://github.com/alexeveritt/tunneljs#readme",
"dependencies": {
"jsemitter": "^1.0.6"
},
"devDependencies": {
"prettier": "1.13.5",
"ts-loader": "^4.5.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^2.9.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}