-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "browser-detect-devtools",
"version": "1.0.4",
"description": "Detect browser (Chrome, IE, Firefox etc...) Developer Tools (Console) is opened",
"scripts": {
"clean": "shx rm -rf _bundles lib",
"build": "npm run clean && tsc && webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"dist"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dsa28s/detect-browser-devtools.git"
},
"author": "dsa28s <Lee Sanghun ([email protected])> ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/dsa28s/detect-browser-devtools/issues"
},
"homepage": "https://github.com/dsa28s/detect-browser-devtools#readme",
"devDependencies": {
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-stage-0": "^7.0.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"ts-loader": "^5.3.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"shx": "^0.3.2"
},
"dependencies": {
"reflect-metadata": "^0.1.12"
}
}